I use the following statement to read the value and its work well.
$PlaceName=$_REQUEST['PlaceName'];
but there is one problem with the above statement. If we pass in a character of a special type (for example, Burger King ยฎ), then the variable $ PlaceName contains an empty value. Please note that the cause of this problem is the registered trademark symbol (ยฎ)
So, how can I read this type of character in PHP by correcting the above statement?
source share