I have a php page with following components. Onclick the GET value should display in Textbox
JavaScript
category= Biscuits & Creams
document.location.href= "page.php?category="+category;
On Load GET parameter is Coming as follows,
page.php?category=Biscuits%20&%20Creams
Display the value in php page:
<input type="text" Value="<?php echo urlencode($_GET['category']);?>"/>
Output in Text Box is coming as
Biscuits instead of Biscuits & Creams