sandy1028 Posted August 2, 2007 Share Posted August 2, 2007 hi, How to pass the query string when the single table to be sorted. I just want to pass the query string for each column separately when clicked on the header. When I click the column header it should sort in ascending when again clicked it should sort descending... <a href="abc.php?name=asc ...........Name</a> Please help me with this Quote Link to comment https://forums.phpfreaks.com/topic/62998-query-string/ Share on other sites More sharing options...
Philip Posted August 2, 2007 Share Posted August 2, 2007 <?php echo "<a href='abc.php?col=name&type=asc'>name</a>"; //use an if statement to change the type to desc and back $query = "SELECT * FROM `table` ORDER BY ".$_GET['col']. " ".$_GET['type']; //Echo results however ?> Make sure to clean the variables when you use GET, as people can change it. Quote Link to comment https://forums.phpfreaks.com/topic/62998-query-string/#findComment-313709 Share on other sites More sharing options...
sandy1028 Posted August 2, 2007 Author Share Posted August 2, 2007 Hi, I am using files not mysql. Quote Link to comment https://forums.phpfreaks.com/topic/62998-query-string/#findComment-313713 Share on other sites More sharing options...
sandy1028 Posted August 2, 2007 Author Share Posted August 2, 2007 <a href=\"abc.php?name=asc\">Name</a> <a href=\"abc.php?address=asc\">Address</a> if($name == "asc") { $line1 = array(); foreach($lines as $line) { $text_line=explode(":",$line); $line1[] = $text_line[0]; } sort($line1); for($i=0;$i<=count($line1);$i++){ echo "<td>--$line1[$i]</td>"; } Quote Link to comment https://forums.phpfreaks.com/topic/62998-query-string/#findComment-313717 Share on other sites More sharing options...
sandy1028 Posted August 2, 2007 Author Share Posted August 2, 2007 Hi, How to sort the each column ascending and descending. The sort of the column should not change when other column header is clicked Quote Link to comment https://forums.phpfreaks.com/topic/62998-query-string/#findComment-313791 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.