hi
<form name="form" action="index.php?page=search" method="get">
<input type="text" name="page=search&q" />
<input type="submit" name="Submit" value="Search" />
</form>
when i run this code on the webserver the variables appear in the url string. this is good.
but the url in the browser window has crazy %3f and stuff instead of the ‘=’ sign can anyone enlighten me to the solution for this problem? where have i gone wrong?
index.php?%3Fpage%3Dsearch%26q=ds&Submit=Search
thank you
edit:
if i replace the endcoded string with this
index.php?page=search&q=ds&Submit=Search it works fine…