Hi,
I am getting the value of some string value including special character from table. Its shows in the address bar but when I echo in php it shows only first word. Could you
please help me. Thanks
My actual Value is Diary & Eggs
In address bar it shows in this format
(some address here)/freshNfruity1/freshNfruity/subProducts.php?selCatagory=6%20+%20&mainCatName=Diary%20&%20Eggs
and in the form I recieved this value using this
$mainCatName = isset($REQUEST['mainCatName'])?$REQUEST['mainCatName']:"";
AND when I use the echo like
echo $mainCatName;
The result is shows only
Diary
Hope you understand my point.