I have an anchor tag like as follows.
<a href="nextpage.php?name=Nike Baby Shoes">shoes</a>
What I want is, when I click on this link, it should go to next page and url should become like,
nextpage.php?name=Nike-Baby-Shoes
But I am not aware about how to put spacing in string while displaying in the url. Right now the url is coming like nextpage.php?name=Nike%20Baby%20Shoes
.
Please guide me to do that.