londonhogfan
10-17-2007, 09:03 PM
I have a form on my website that uses:
<form action="Results.php" method="GET">
From:<input type="text" size="4" maxlength="4" name="from" value="1894" />
To:<input type="text" size="4" maxlength="4" name="to" value="2007" />
<input type="submit" value="Go"/></form>
This works great to return a page that looks like...
results.php?from=1894&to=2007
problem is I have recently upgraded to using SEF urls so I need it to return a url that looks like...
results/1894-2007
Is there anyway to do this in a form?
Thanks in advance for any help.
<form action="Results.php" method="GET">
From:<input type="text" size="4" maxlength="4" name="from" value="1894" />
To:<input type="text" size="4" maxlength="4" name="to" value="2007" />
<input type="submit" value="Go"/></form>
This works great to return a page that looks like...
results.php?from=1894&to=2007
problem is I have recently upgraded to using SEF urls so I need it to return a url that looks like...
results/1894-2007
Is there anyway to do this in a form?
Thanks in advance for any help.