Page 1 of 1

how to display order from 1 to 10 using php

Posted: Tue Jul 22, 2008 2:09 am
by manohar
I want to display number from 1 to 10 if i want to edit the number i need to change order in 1 to 10 list

Re: how to display order from 1 to 10 using php

Posted: Tue Jul 22, 2008 3:06 am
by omniuni
If you ONLY need 10 things stored in an order (I'm guessing a bit here)

You can try storing them in an array, with index values 1-10, and serialize them for later retrieval. Other than that, I'd need some more information on what you want to do.