Jump to content

[SOLVED] Reordering a Table HELP!


hungryOrb

Recommended Posts

ok, a little dramatic for a simple problem, but I don't know the answer!

 

I simply need to reorder my table of printed MySQL rows, when a table header LINK is clicked like:

 

ID        Name        Type

1          Bert          Toast

3          Sal            Orange Juice

 

etc. So that if TYPE is clicked, the rows will organise themselves the other way around, because O beats T in the alphabetical order of things. At the moment, my headers are encased in <a> tags. I know that I could make a .php page for every single header, so that it organises as set, but wondering if there is an easier way!

 

Any ideas? TIA ! :-*

Link to comment
Share on other sites

Each header should be a link to the same page, but in addition to ?sort=(header). I will give an example:

If your page is called page.php, the "Name" header should be a link to page.php?sort=Name. The Type header should be page.php?sort=Type.

Then, every time you want to display the table, you add a ORDER BY to your sql, by the column given. If nothing is given, sort by a default column like the ID. Also, you have always to keep in mind that this way of coding can cause sql-injection security holes, so use lots of validation and mysql_real_escape_string().

 

Orio.

Link to comment
Share on other sites

Hmm, trying your first suggestion, with this line:

 

<th><a href=\"viewalljobs.php?sort=Priority.\">Priority</a></th>

 

Clicking doesn't change anything :(

I assume then sort is a php function, and does it automatically detect the first in numerical or alphabetical characters and sort that way?

Link to comment
Share on other sites

Clicking should reload the page but it's up to you to get values out of the URL and modify your SQL query accordingly.  This is one of those things that isn't built into the language and you have to handle it yourself, manually, each and every time you wish to use it.

 

<?php

  $sort = isset($_GET['sort']) ? $_GET['sort'] : "";

  $sort = mysql_real_escape_string($sort);

  $order = isset($_GET['sort']) ? $_GET['sort'] : "ASC";

  $order = $order == "ASC" || $order == "DESC" ? $order : "";

 

  $sql = <<<MYQUERY

      SELECT * FROM table

      WHERE ...

MYQUERY;

 

  if(strlen($sort)){

    $sql .= " ORDER BY " . $sort;

    if(strlen($order)){

      $sql .= $order;

    }

  }

 

  echo $sql;

?>

Link to comment
Share on other sites

Hmm, trying your first suggestion, with this line:

 

<th><a href=\"viewalljobs.php?sort=Priority.\">Priority</a></th>

 

Clicking doesn't change anything :(

I assume then sort is a php function, and does it automatically detect the first in numerical or alphabetical characters and sort that way?

 

 

No, it's not being automatically. You have to fetch the value passed thru $_GET and then add a "ORDER BY" clause to your sql with the value you passed.

As I already wrote: (with more details)

 

Then, every time you want to display the table, you add a ORDER BY to your sql, by the column given. If nothing is given, sort by a default column like the ID. Also, you have always to keep in mind that this way of coding can cause sql-injection security holes, so use lots of validation and mysql_real_escape_string().

 

 

Orio.

Link to comment
Share on other sites

OMG!  I forgot code tags.  /slap_self

 

Depending on how you wrote it, you could write a library function that would handle that for you.  The function would need as parameters:

 

$sql - the query without an ORDER BY clause (because the function is going to add it)

$sort_fld - the name of the sort field in $_GET

$order_fld - the name of the order field in $_GET

$fields - an array of the possible sort fields

$default - the default field to use if one can't be found in get

 

I think this should do it...

<?php
  function query_build_sort( $sql, $sort_fld, $order_fld, $fields, $default ){
    // Determine the sort field
    // $fields are the possible fields, $sort_fld is the name of the $_GET index
    if(isset($_GET[$sort_fld]) && in_array($_GET[$sort_fld], $fields)){
      $sort_fld = $_GET[$sort_fld]; // use the one in $_GET
    }else{
      $sort_fld = $default; // Not provided in $_GET, so use default
    }
    $order_fld = isset($_GET[$order_fld]) ? $_GET[$order_fld] : "ASC";
    $order_fld = $order_fld == "ASC" || $order_fld == "DESC" ? $order_fld : "ASC";

    return $sql . " ORDER BY " . $sort_fld . " " . $order_fld;
  }    
?>

Link to comment
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.