/*
I use it for sorting the rows of MYSQL_ASSOC-results without the need to
query the database again... it helps when you have slow querys whose result only needs to be sorted again.
First transfer the result into an array like this:
while($r...
/*
Function coded by Stephan Pirson
contact: saibot@hesperia-mud.org
*/
function print_a( $TheArray )
{ // Note: the function is recursive
echo "<table border=1>\n";
$Keys = array_keys( $TheArray )...