Hi everyone.
I was updating my content on my local site and I noticed a weird thing. I have a simply query along the lines of "SELECT * FROM table ORDER BY order_id ASC". Order_id is a field I use which can be changed so that records can vary in the order they are displayed. Trouble is when I get passed 10 records it no longer works. The order is as follows:
1,
10,
2,
3,
4,
5,
6,
7,
8,
9.
Does anyone know what can be done to stop this?