Posted by Andy Hassall on 12/20/05 00:56
On 19 Dec 2005 14:08:15 -0800, briansmccabe@gmail.com wrote:
>> This should be: $result6['quant'].
>>
>> See:
>>
>> http://www.php.net/manual/en/language.types.array.php#language.types.array.donts
>
> I have tried to figure out how to single-quote the contents of the []
>but when it is concatenated in between strings of HTML, it goofs things
>up. I cannot remember how to do that. I tried a few things I noticed in
>the page you link to above, but I am not getting very far.
Use the "curly brace" format within a string:
echo "{$result6['quant']}";
http://www.php.net/manual/en/language.types.string.php#language.types.string.parsing.complex
--
Andy Hassall :: andy@andyh.co.uk :: http://www.andyh.co.uk
http://www.andyhsoftware.co.uk/space :: disk and FTP usage analysis tool
[Back to original message]
|