Re: [PHP] Quick one...

2001-04-03 Thread Lindsay Adams
Do it in your sql SELECT statement. Mysql uses ORDER BY field_name I think that is standard SQL. On 4/3/01 12:54 PM, "Brandon Orther" <[EMAIL PROTECTED]> wrote: > Hello, > > How do I alphabetize the out put of my data base? > > The field would be LastName > > Brandon -- PHP General Mailin

Re: [PHP] Quick one...

2001-04-03 Thread Mike King
SELECT.ORDER BY LastName; Brandon Orther wrote: > > Hello, > > How do I alphabetize the out put of my data base? > > The field would be LastName > > Brandon > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-ma

RE: [PHP] Quick one...

2001-04-03 Thread Boget, Chris
> How do I alphabetize the out put of my data base? > The field would be LastName "SELECT * FROM MyTable ORDER BY LastName" Then loop through the result set. Chris

[PHP] Quick one...

2001-04-03 Thread Brandon Orther
Hello, How do I alphabetize the out put of my data base? The field would be LastName Brandon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTEC