I have an array that loops through a set of a values, this is how it looks:
$arr[] = array("name" => $name,
"add1" => $add1,
"add2" => $add2,
"add3" => $add3,
"postcode" => $pc,
"distance" => $distance);
Simple and quick question (although I'm struggling with the answer), I was wondering how I can sort the array into distance ascending (which is a floating number) order?