i've created multiple arrays just like this one:
<?php
$student1 = array("name" => "dean", "score" => "10", "time" => "5");
?>
i've created 15 arrays just like the one above but with different values, after this i've created an array where i store the 15 arrays previously created just like this
<?php
$class = array($student1,$student2,....)
?>
now im asked to order $class
from lower to higher depending on the score of the student
any help?