Re: [PHP] how to move one element of an array to the end of the array

2001-10-19 Thread Mark
let me know where I >strayed. try: ORDER BY make.make='no make specified',make.make,model.model >Also, out of curiosity, is it faster to do it in MySQL rather then >PHP? > >Thanks, >Tom > >> From: "Mark Charette" <[EMAIL PROTECTED]> >> Date

RE: [PHP] how to move one element of an array to the end of the array

2001-10-19 Thread Mark Charette
Don't bother with doing it in PHP, do it in MySQL with a functional ordering: Select Make from your_db order by if(left(Make,7)='no make','',Make) -Original Message- From: Tom Beidler [mailto:[EMAIL PROTECTED]] Sent: Friday, October 19, 2001 11:53 AM To: php list Subject: [PHP] h