Hi Zeus,
@ 1:58:56 AM on 4/10/2001, Zeus wrote:
> Isn't the '=' operator suppose to be used for assigning and not for
> evaluation.
In this case, it /is/ used for assignment.
print $row['some_column'];
...
>> > Isn't this suppose to be an infinite loop?
>> >
>> > while ($row is assigned to mysql_fetch_array($query)) {
>> > do stuffs;
>> > }
>> >
>> > someone correct me if I'm wrong?
...
>> Consider yourself corrected :-) mysql_fetch-array returns an array
>> corresponding to the fetched row, or _false if there are no more rows_
>>
>> So as soon as there are no more rows, $row = mysql_fetch_array($query)
>> evaluates to false and the while exits.
>>
>> --
>> David Robley | WEBMASTER & Mail List Admin
...
-Brian
--
PGP is spoken here: 0xE4D0C7C8
Please do not carbon copy me on list replies.
--
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]