Hello,
I don’t know what is missing but I cannot use this array two times.
[php]
$cars = array
(
array(“Volvo”,22,18),
array(“BMW”,15,13),
array(“Saab”,5,2),
array(“Land Rover”,17,15)
);
echo ‘
’.$key.’ | ’;
echo ‘
’.$key.’ | ’;
[/php]
Hello,
I don’t know what is missing but I cannot use this array two times.
[php]
$cars = array
(
array(“Volvo”,22,18),
array(“BMW”,15,13),
array(“Saab”,5,2),
array(“Land Rover”,17,15)
);
echo ‘
’.$key.’ | ’;
echo ‘
’.$key.’ | ’;
[php]<?php
$cars = array
(
array(“Volvo”,22,18),
array(“BMW”,15,13),
array(“Saab”,5,2),
array(“Land Rover”,17,15)
);
echo ‘
’.$key.’ | ’;
echo ‘
’.$key.’ | ’;
Stupid little ‘s’.
Excuse my word.
Sometimes when coding simple issue are so hard to find.
Thank you so much for this. I was working on this since morning.