Eiolon Posted August 17, 2012 Share Posted August 17, 2012 Nevermind, I figured it out. Thanks! 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 " Link to comment https://forums.phpfreaks.com/topic/267235-help-with-sorting/#findComment-1370233 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.