Ok, I have almost done it. but %26 appears in the URL, this stops it from working. Any ideas?
here is the code im using:
Code:
<FORM METHOD="get" ACTION="http://www.killerchutney.co.uk/new/search/search.php">
<INPUT TYPE="text" NAME="query">
<INPUT TYPE="hidden" NAME="&search" VALUE="1" >
</FORM>
EDIT: found the problem. here is the fixed code:
Code:
<FORM METHOD="get" ACTION="http://www.killerchutney.co.uk/new/search/search.php">
<INPUT TYPE="text" NAME="query">
<INPUT TYPE="hidden" NAME="search" VALUE="1" >
</FORM>
Bookmarks