I'm working on a page for a publishing company, and I am a novice with PHP. I'm trying to setup a templet for their marketing guy so he can update their list of clients on the website by himself. How do I POST so that it shows up alphabetically in a list?
thanks, n
Ever thought of putting each client into a database and sort?
There's a lot to chew on there and I suggest getting a book on PHP and learning database programming to solve your problem.
It will be a great learning experience as well.
I don't know what you mean by "how do I POST so that it shows up alphabetically", but PHP has a whole slew of sorting functions that can be used to sort lists. If the data is coming from a database, then basically any database server supports the ORDER BY clause in queries.