Stricly speaking this isn't a WB only issue but I'm hoping for a tiny bit of PHP help.
I'm having some persistent problems with my search box and decided to finally rip it out and replace with Google Search.
I have this code
<form action="http://stormvisions.com/pages/search.php" method="post">
<input type="text" name="q" class="searchtextbox">
<input type="submit" name="submit" value="Search" class="searchsubmitbutton" />
<br />
</form>
I want to add 2 radio buttons and change the action based on these choices.
One action would be
http://stormvisions.com/pages/search.php
and the other
http://stormvisions.com/pages/go/artsearch.php
Can this be done with PHP or I guess it might need javascript?
Your help appreciated.