In article <[EMAIL PROTECTED]>,
 [EMAIL PROTECTED] ("Boget, Chris") wrote:

> Now, supposing you
> do have error level set to very high, you cannot do this:
> 
> echo "Here is a $string, $myArray['joe'] with $alot of PHP $variables";
> (using single quotes)
> 
> to stop the error.  You actually have to do this:
> 
> echo "Here is a $string, " . $myArray["joe"] . " with $alot of PHP
> $variables";

echo "Here is a $string, {$myArray['joe']} with $alot of PHP $variables";

-- 
CC

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