I use following statement for read the value and its works well.
$PlaceName=$_REQUEST['PlaceName'];
but here is one problem with above statement. If we pass some special type character (like Burger King ®), then variable $PlaceName contains blank value. Note that the reason of this problem is the symbol of registered trademark (®)
So how can I read this type of symbol in PHP by correcting above statement?
You can try