I've got the following piece of code that works on two radio buttons:
Code: Select all
<?
if (isset($_POST["submit"])) {
if ($issues = '4issues') {
header("Location: http://url1goeshere");
} else if ($issue = '8issues') {
header("Location: http://url2goeshere");
} else {
echo("Do nothing");
}
}
?>I've tried various ways of getting the code above to work to no avail.
If anyone has any ideas of how to get this sorted, I would really appreciate it.
Thank in advance