Wolfgang Schneider wrote:
> 
> ...
> 
> Anyone have an idea what may be causing these warnings? It is only
> with code such as " $variable[value]" that these messages show up ...
> and then the code is processed anyways and the page displayed.
> Thank you for any input and help to solve this problem ...
> 

Use $variable['value'] or $variable["value"].

Because, if you use $variable[value], then PHP thinks that 'value' is 
some constant, not string. This is why these warnings occurs.

-- 
Pavel a.k.a. Papi

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