Sorting Field Dropdown

3 posts by 2 authors in: Forums > CMS Builder
Last Post: August 29, 2013   (RSS)

Hi,

You're very close! I think you need to use order by instead:

SELECT num, yacht_name
FROM `<?php echo $TABLE_PREFIX?>yachts`
ORDER BY yacht_name ASC

ORDER BY is the statement that is used to decide which column should be used to sort results, and if the results should be ascending or descending.

Thanks!

Greg

Greg Thomas







PHP Programmer - interactivetools.com

Thanks Greg, that works :)