Attila Posted August 9, 2008 Share Posted August 9, 2008 I am using a form so the user can search the database. everything is working except the order at which items are searched. I beleive it could be my coding but I am not seing a problem. $sql = "SELECT * FROM ddoitems WHERE ItemDescription LIKE '%$item%' OR ItemName LIKE '%$item%' OR ItemType LIKE '%$item%' OR QuestName LiKE '%$item%' ORDER BY '%$Advance%' ASC"; The part that is not working ins the $Advance ASC it is not ordering things. I know that $Advance is getting the information corectly to sort it because I have an echo statement to echo the value. Link to comment https://forums.phpfreaks.com/topic/118864-not-sure-what-is-wrong/ Share on other sites More sharing options...
dezkit Posted August 9, 2008 Share Posted August 9, 2008 $sql = "SELECT * FROM ddoitems WHERE ItemDescription LIKE '%$item%' OR ItemName LIKE '%$item%' OR ItemType LIKE '%$item%' OR QuestName LIKE '%$item%' ORDER BY '%$Advance%' ASC"; Link to comment https://forums.phpfreaks.com/topic/118864-not-sure-what-is-wrong/#findComment-612105 Share on other sites More sharing options...
Attila Posted August 9, 2008 Author Share Posted August 9, 2008 Thanks for the imput on the formating but I coppied exactly what you had and it is the same no help. Any other ideas? Link to comment https://forums.phpfreaks.com/topic/118864-not-sure-what-is-wrong/#findComment-612107 Share on other sites More sharing options...
dezkit Posted August 9, 2008 Share Posted August 9, 2008 can you tell me what is $advance? Link to comment https://forums.phpfreaks.com/topic/118864-not-sure-what-is-wrong/#findComment-612111 Share on other sites More sharing options...
Attila Posted August 9, 2008 Author Share Posted August 9, 2008 Best to see it in action the formating isn't done but you will understand. http://thaczero.com/test.php The $advance is what you select on the radio buttons. Link to comment https://forums.phpfreaks.com/topic/118864-not-sure-what-is-wrong/#findComment-612113 Share on other sites More sharing options...
dezkit Posted August 9, 2008 Share Posted August 9, 2008 and you want the order to be alphabetically? Link to comment https://forums.phpfreaks.com/topic/118864-not-sure-what-is-wrong/#findComment-612114 Share on other sites More sharing options...
Attila Posted August 9, 2008 Author Share Posted August 9, 2008 Yes Link to comment https://forums.phpfreaks.com/topic/118864-not-sure-what-is-wrong/#findComment-612117 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.