hello,
I'm working on a module and I need to sort a two dimensional associative array.
the array looks something like this
$arr[] = array('weight' => $weightvar, 'value' => $valvar);
this is added a few times so the array has many of these values.
I'd like the sort the array according to the weight value...
$arr[0] = array('weight' => 5, 'value' => 'test1')
$arr[1] = array('weight' => -5, 'value' => 'test2');
$arr[2] = array('weight' => 0, 'value' => 'test3');
$arr[3] = array('weight' => 7, 'value' => 'test4');
will look like
$arr[0] = array('weight' => -5, 'value' => 'test2');
$arr[1] = array('weight' => 0, 'value' => 'test3');
$arr[2] = array('weight' => 5, 'value' => 'test1')
$arr[3] = array('weight' => 7, 'value' => 'test4');
thanks!
Idan

