Iv got a form and I need to put = and & in the name of the Select area which will then later be displayed as a URL link. However if I put = or & the URL displays = as %3D and the & sign is displayed as %26
I have this so far
<form method="get" name="FormFilter">
<select name="condition=<?php echo $condition; ?>&order" onChange="document.forms['FormFilter'].submit()">
<option value ="ASC">Newest</option>
<option value="DESC">Oldest</option>
</select>
</form>
and it shows the URL as
browse.php?condition%3Difquestions%26order=DESC
Iv tried using = and $amp; but they dont work. How can I get it to work?
Thanks
Try this: