I don't know how to send the parameters $x and $y to the function
I want to compare the array with this function two dimensions
$products1 = array(array('TIR','Tires','100'),
array('OIL','Oil','10'),
array('SPK','Spark Plugs',4)
);
function compare($x,$y){
if($x[1] == $y[1]){
return 0;
}
else if($x[1]<$y[1]){
return -1;
}
else{
return 1;
}
}
usort($products1,'compare');
for($row1=0;$row1<3;$row1++){
for($column1=0;$column1<3;$column1++){
echo ' | '.$products1[$row1][$column1];
}
echo '<br/>';
}