I need to sort an array to make a rank by points but I can't make it work correctly..
function cmp($a, $b)
{
    return strcmp($a->points, $b->points);
}
usort($teamList, "cmp");  
foreach($teamList as $r)
{
    echo $r->name . " " . $r->points. "<br>";
}
I got this with this code: randomteam*-100 randomteam* -12 randomteam* -12.5 randomteam* -15 randomteam* -15.5 randomteam* -15.5
- Each randomteam is a different team
 
     
    