Hi all,
Anyone know how to redirect to a new website based on the posted variables?
I've got a page similar to this:
<form method="Post" action="doquery.php">
<input type=text size=50 name=q>
<select name=qtype>
<option>webpage 1
<option>webpage 2
</select>
<input type=submit>
</form>
Once doquery.php loads with the query string and the qtype webpage info...
how can I then redirect the doquery.php page to the selected qtype webpage and pass that webpage the query string as well?
Thanks in advance!
Gary