Hi,
I am trying to organize the way my episode titles output. At the moment it prints like this. (I want to be able to upload the newest episodes and also go back and upload the older shows but i want the newer shows to stay at the bottom in numerical order)
Output: (At the moment it shows like this)
Episode 1
Episode 3
Episode 323
Episode 4
Output: (This is the way i want it)
Episode 1
Episode 3
Episode 4
Episode 323 //This number is way bigger than the others.
How can i get it to show like this option?
The SELECT Script i have rite now is
SELECT * FROM table.".$_GET['name']." ORDER BY episode, id ASC
but its not what i want. Please Help! thanks in advance!