A copy and paste into foo.php and then a php -q foo.php yielded results for
me.

--Joe

On Fri, Apr 06, 2001 at 10:44:59AM -0600, [EMAIL PROTECTED] wrote:
> Howdy Y'all!
> 
> I'm trying to figure out why I'm having so much difficulty with
> nested for loops.
> 
> As a test, I did this and it doesn't work. The script simply doesn't 
> give any output.
> 
> <?
>  error_reporting(E_ALL);
> 
>  for( $i=0; $i<10; $i++ )
>   for( $j=0; $j<10; $j++ )
>   {
>     $res = $i * $j;
>     print(" result = $res <br>");
>   }
> ?>
> 
> If I remove the inner loop then it works fine but that's useless.
> 
> I am hoping to figure out how to make this work since I need to 
> populate a 2 dimensional array with results from multiple database
> queries.
> 
> Any ideas? Anything obviously wrong?
> 
> Thanks in advance!
> John
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]


/******************************************************************************\
 *                    Joe Stump - PHP/SQL/HTML Developer                      *
 * http://www.care2.com - http://www.miester.org - http://gtk.php-coder.net   *
 * "Better to double your money on mediocrity than lose it all on a dream."   * 
\******************************************************************************/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to