I have found these sample html codes but I think these are lacking. <FORM ACTION="../cgi-bin/mycgi.pl"> What size pizza?<P> <INPUT TYPE=RADIO NAME="pizzasize" VALUE="S">small<BR> <INPUT TYPE=RADIO NAME="pizzasize" VALUE="M">medium<BR> <INPUT TYPE=RADIO NAME="pizzasize" VALUE="L">large<P> <INPUT TYPE=SUBMIT VALUE="submit"> </FORM> Thanks, Magiclouie
You would need PHP or you could do it with javascript. PHP would be, if ($_POST['go']) { $link = $_POST['link']; header("Location:$link"); } PHP: HTML <form action='' method='post' name='field'> <p> http://www.link1.com <input type="radio" name="link" value="http://www.link1.com"/> http://www.link2.com <input type="radio" name="link" value="http://www.link2.com"/> http://www.link3.com <input type="radio" name="link" value="http://www.link3.com"/> </p> <p><input type="submit" name="go" value="GO"/></p> </form> HTML: Something like that would get it done.
Hi HuggyEssex, thanks a lot for these. I am going to examine and study these codes. More power to you!