PDA

View Full Version : Sorting Help



jetalomar
May 27th, 2001, 00:19
how i can get a script that sort the standing from first place to last place written on PHP.

2 Where i can get a host scripts written on PHP? also

Cheap Bastard
May 27th, 2001, 01:15
you mean like

for($i=0;$i<whatever-1;i++)
if ($elements[i] > $elements[i+1])
{
$temp=$elements[i];
$elements[i]=$elements[i+1];
$elements[i+1]=$temp
}


Also, try hotscripts.com and php.resourceindex.com
if they don't have it there's not too much hope, i'm afraid

jetalomar
May 27th, 2001, 01:20
what i'm suppost to look for? i don't know how to use that.

Cheap Bastard
May 27th, 2001, 10:25
in that case, i suggest you just look for whatever you need at hotscripts and php.resourceindex.com

lucifer
May 27th, 2001, 12:33
you can do easy sorts using hashes