I have an array like this:
$mainMenu[0][0] = "index.php?prod=0";
$mainMenu[0][1] = "Product One";
$mainMenu[1][0] = "index.php?prod=1";
$mainMenu[1][1] = "Product Two";
$mainMenu[2][0] = "index.php?prod=2";
$mainMenu[2][1] = "Product One";
In the first index I save the url of the link. In the second is the text, that should be displayed. How can I run a loop (and what loop should I run) to print the menu?