Anyone ever do a nested for loop?
$i =0;
$j =0;
for ($x=0; $x < 50; $x++){
echo ("1 to 50");
for ($j=0: $j < 5; $j++) {
echo ("less than 5");
}
}
I haven't seen a nested loop in PHP, so I'm not sure of the exact syntax.
thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

