Jump to content

query string


sandy1028

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/62998-query-string/
Share on other sites

<?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.

Link to comment
https://forums.phpfreaks.com/topic/62998-query-string/#findComment-313709
Share on other sites

<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>";
}


Link to comment
https://forums.phpfreaks.com/topic/62998-query-string/#findComment-313717
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.