Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.