On 12/25/2012 4:21 PM, Ken Arck wrote:
So I cannot do nested do loops in php? <?php $a = 0 ; $b = 0 ; do { echo "$a\n" ; do { echo "$b\n" ; $b++ }while($b <=10) ; $a++; }while($a <= 20) ; ?>
You have a typo. Line 8 What are you expecting as output? -- Jim Lucas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php