Posted by John Holmes on 10/12/69 11:09
zzapper wrote:
> Hi,
> It's been a long day, but what's wrong here?.
>
> echo $_POST['Location']; # good
> echo "<br>";
> echo "$_POST['Location']"; # bad nothing appears
If you're going to display an array value within a string, put it in
brackets.
echo "my value: {$array['key']}";
This also works:
echo "my value $array[key]";
but it's better to use the brackets so it's clear exactly what variable
you are displaying.
--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
php|architect: The Magazine for PHP Professionals – www.phparch.com
[Back to original message]
|