Re: $i vs. $r

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 3/27/06, Kevin Murphy <php@xxxxxxxxxxxxxxxxxx> wrote:
> Does anyone have a clue why using this code doesn't work:
>
> $i = 0;
>
> while ($row = mysql_fetch_array($result))
>
>         {
>                 echo ("Blah blah blah");
>                 $i++;
>         }
>
> but this code does?
>
> $r = 0;
>
> while ($row = mysql_fetch_array($result))
>
>         {
>                 echo ("Blah blah blah");
>                 $r++;
>         }
>
> I don't use $i anywhere else on the page.
>
> --
> Kevin Murphy
> Webmaster - Information and Marketing Services
> Western Nevada Community College
> www.wncc.edu
> (775) 445-3326
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
>

Just a guess, but looks like a scoping issue. That code doesn't show
any difference between the two.


--
Anthony Ettinger
Signature: http://chovy.dyndns.org/hcard.html

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



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux