I found this
<?php
$shop = array( array("rose", 1.25 , 15),
array("daisy", 0.75 , 25),
array("orchid", 1.15 , 7)
);
?>
but I need the second levels arrays to be dynamic, how do I do that??
Like
<?php
$shop = array( array(1, 2 , 3),
array(2, 2 , 3),
array(3, 2 , 3),
array(4, 2 , 3),
...,
array(n, 2 , 3)
);
?>