I have a php/mysql query working like so:
$Query = "SELECT * FROM $TableName WHERE name LIKE '%".$searchterm ."%'
"
All I want to do now is sort them alphabetically. By using the above
current query, the results are listed in the order in which they were
placed in the database.
TIA
Rob
$Query = "SELECT * FROM $TableName WHERE name LIKE '%".$searchterm ."%'
"
All I want to do now is sort them alphabetically. By using the above
current query, the results are listed in the order in which they were
placed in the database.
TIA
Rob
Comment