Eiolon Posted August 17, 2012 Share Posted August 17, 2012 Nevermind, I figured it out. Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/267235-help-with-sorting/ Share on other sites More sharing options...
Barand Posted August 17, 2012 Share Posted August 17, 2012 if (!isset($_GET['sort'] { $sortby = 'u.Patron_name'; } else { if ($_GET['sort']=='Name') { $sortby = 'u.Patron_name'; } else { $sortby = 'u.PC_Id' } } Then in the query use "SELECT ... ORDER BY $sortby " Quote Link to comment https://forums.phpfreaks.com/topic/267235-help-with-sorting/#findComment-1370233 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.