Chris W. Parker <>
on Tuesday, September 16, 2003 4:07 PM said:
> This Is Good(tm):
>
> for($x=0;$x<100;$x++)
> {
> for($x=0;$x<100;$x++)
> {
> echo "Me happy now!!";
> }
> }
Hehe... whoops! Should be:
for($x=0;$x<100;$x++)
{
for($y=0;$y<100;$y++)
{
echo "Me happy now!!";
}
}
BYE!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

