Sorting the Easy Way - See What We've Done...
(Page 4 of 5 )
We have this PHP array $prices that holds the prices of our products. The key is the product's ID and its value is the price of the product. We sort it numerically, and store its indexes (now ordered by price) in a JS array. If we reverse it, we can store its reverse ordered indexes in another JS array. This is how the JS arrays look:
var ordPrice
=new Array(10,1,9,2,5,4,6,3,7,8);
var ordPriceInv=new Array(8,7,3,6,4,5,2,9,1,10);
Then we have the JS order function, which accepts one parameter called field. This parameter is the name of the JS array we'll use to reorder the rows of our table. The function obtains the ID of the first product (following the new order), grabs the contents of its row and appends them to the output variable.
Notice that since the innerHTML property stores only the contents of the TR tags, we must append manually the TR tags to the output variable, and that means setting the ID too. Once we have the HTML code of the new table, we just send it to the innerHTML property of the content div, which displays it immediately. Now tell me, don't you love innerHTML? I personally think it's the best thing since sliced bread!
I Need More!
Yes! Once you see how fast this code sorts rows in a table you just have to use it with the other columns. So, let's see the final example, a little bit more optimized to make your life easier:
<?php
//The function that sorts any array and generates the JS output
function gen_ord_array($name,$variable, $flag)
{
$out="var $name=new Array(";
asort($variable, $flag);
reset ($variable);
while (list ($key, $val) = each ($variable))
$out.= "$key,";
$out=substr($out,0,-1);
$out.=");rn";
//Now for the inverse JS array
$out.="var $name"."Inv=new Array(";
$variable=array_reverse($variable, TRUE);
reset ($variable);
while (list ($key, $val) = each ($variable))
$out.= "$key,";
$out=substr($out,0,-1);
$out.=");rn";
return $out;
}
//Connect to the database
$conn=mysql_connect('localhost','root','') or die ('Sorry, no connection to database available :-(');
//Perform our query
$query='SELECT * FROM test.products';
if (!$res=mysql_query($query, $conn))
{
die ('Sorry, query error');
}
//We populate the $output variable with the HTML code to generate the results table
//Now the headers have links to perform the sorting
//We'll keep the table header in another variable to save us time
//in the JS function
$output_h='<table border="1" cellpadding="5"><tr style="font-weight:bold">';
$output_h.='<td>ID</td>';
$output_h.='<td><a href="#" onClick="order('ordName')">v</a> NAME
<a href="#" onClick="order('ordNameInv')">^</a></td>';
$output_h.='<td><a href="#" onClick="order('ordPrice')">v</a> PRICE
<a href="#" onClick="order('ordPriceInv')">^</a></td>';
$output_h.='<td><a href="#" onClick="order('ordCode')">v</a> CODE
<a href="#" onClick="order('ordCodeInv')">^</a></td>';
$output_h.='<td><a href="#" onClick="order('ordWeight')">v</a> WEIGHT
<a href="#" onClick="order('ordWeightInv')">^</a></td>';
$output_h.='</tr>';
$output=$output_h;
//We keep the number of results of the query, they will be
//used in JavaScript
$num_results=mysql_num_rows($res);
while ($a=mysql_fetch_row($res))
{
//Append the table row to our $output variable
$output.="<tr
id='line$a[0]'><td>$a[0]</td><td>$a[1]</td><td>$a[2]</td><td>$a[3]</td><td>$a[4]</td></tr>";
//Add this product to the sort arrays
$names[$a[0]]=$a[1];
$prices[$a[0]]=$a[2];
$codes[$a[0]]=$a[3];
$weights[$a[0]]=$a[4];
}
$output.='</table>';
//We now do the sorting of the arrays, and store them in a JS array
$jsOutput=gen_ord_array('ordName',$names,SORT_STRING);
$jsOutput.=gen_ord_array('ordPrice',$prices,SORT_NUMERIC);
$jsOutput.=gen_ord_array('ordCode',$codes,SORT_STRING);
$jsOutput.=gen_ord_array('ordWeight',$weights,SORT_NUMERIC);
? >
<html>
<head>
<script language="JavaScript">
var num_results= <?=$num_results
;
//We output the array definitions
<?=$jsOutput? >
//This is the function that performs the actual sorting
function order (field)
{
//This var will store the row number we are grabbing from the table
var row_number=0;
//We must generate again the table headers
//Luckily, we already have them in the PHP $output_h variable
//But we must escape the single quotes!!
var out='<?=str_replace("'","\'",$output_h)';
//The field variable is the name of the array we want to use to
//reorder our table
//We travel across it and grab the content of the row that has
//that ID, and append it to our out variable
for (x=0;x<num_results;x++)
{
eval ("
row_number="+field+"["+x+"];");
eval ("out+=\"<tr
id='line"+row_number+"'>\"+document.getElementById('line"+row_number+"').inner
HTML+'</tr>';");
}
out+='</table>';
//Finally, we set the content of the content div to our new table
document.getElementById('content').innerHTML=out;
}
</script>
</head>
<body>
<div id='content'>
<?=$output? >
</div>
</body>
</html>
Next: PHP Sorting >>
More JavaScript Articles
More By Alf A. Pedersen