I'm using this form field:
<form name="form" method="get" action="search.php">
Search:<br />
<input type="text" name="search" size="20" class="searchbox">
<input type="image" name="submit" src="images/icon_search.gif" class="searchbox">
</form>
However, I get the submit values in the URL too.
Ex:
search.php?search=testing&submit.x=0&submit.y=0
I only want "search=testing" to appear. How can I do this? Thanks.