Re: Quoting and $_POST['Name'] problem

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

 



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

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