Hi,

        I did one once.  It was similar to what you typed out here.  Are you having
troubles with this?

-Dan Joseph

> -----Original Message-----
> From: Micah Montoy [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, July 09, 2003 1:56 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] nested for loops
>
>
> 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
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to