Hey i want to use php to redirect a user to a url depending on which radio buttons they have been selected in the form once they click the submit button.
I have this thus far but it does not work so its pretty useless.
<?php // variables form form
$Country = $_POST['Country'];
?>
<form action="<?php print $Country ?>" method="post">
<input name="Country" type="radio" value="http://www.istockphoto.com" /> South Africa<br />
<input name="Country" type="radio" value="http://www.jamieburger.co.za" /> England<br />
<input name="" type="submit" value="Submit"/>
</form>
Any help would be greatly appreciated.