Re: array variables with or without quotes

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

 



Chuck, you are the man! I decided to reread the manual word for word but 
have only gotten through Strings as of last night. Thanks for zeroing me in 
on the right spot.

txs
2dogs





"Chuck Anderson" <hairtwoday@xxxxxxxxx> wrote in message 
news:34.21.50685.8C9CCF34@xxxxxxxxxxxxxxx
> 2dogs wrote:
>
>>I recently encountered a situation where I had to retrieve data from a 
>>MYSQL database table with a field named "include". My code looked like 
>>this:
>>
>>$content_result = mysql_query('SELECT * FROM calander') or 
>>die(mysql_error());
>>$content_row = mysql_fetch_array($content_result);
>>if ($content_row[include])
>>    {go do something;}
>>
>>When I tried to run this, PHP treated the word  -include- as a control 
>>structure rather than an index name. Understandable. So, I put it in 
>>single quotes  ('include') to see what would happen and it works fine. But 
>>I don't understand why!
>>
>>What is the difference between $content_row [include] and 
>>$content_row['include']? I have been unable to resolve this question in 
>>the php manual, I need enlightenment.
>>
>>2dogs
> http://www.php.net/manual/en/language.types.array.php#language.types.array.foo-bar
>
> -- 
> *****************************
> Chuck Anderson ? Boulder, CO
> http://www.CycleTourist.com
> Integrity is obvious.
> The lack of it is common.
> ***************************** 

-- 
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