this is my Multidimensional Array im tring to make a 3x5 table, iknow i have to use foreach, but i don't understand where to go from here, anyone got any suggestions?
<table>
<?php
$something = array(
array("firma" => "ASG",
"selskap" => "ABG Sundal Collier",
"siste" => 5.95
),
array("firma" => "AFG",
"selskap" => "AF Gruppen",
"siste" => 122
),
array("firma" => "AKVA",
"selskap" => "AKVA Group ",
"siste" => 47.2
),
array("firma" => "AGA",
"selskap" => "Agasti Holding",
"siste" => 1.2
),
array("firma" => "AKA",
"selskap" => "Akastor",
"siste" => 6.04
),
);
?>
</table>