Je moet ingelogd zijn om te stemmen.
<?php if(isset($_POST['send'])){ echo $_POST['radio']; } ?> <form action="<?=$_SERVER['REQUEST_URI']?>" method="post"> <input name="radio" type="radio" value="een" checked="checked" /> <input name="radio" type="radio" value="twee" /> <input name="radio" type="radio" value="drie" /> <input name="send" type="submit" id="send" value="Submit" /> </form>
<?phpif(isset($_POST['send'])){echo $_POST['radio'];}?><form action="<?=$_SERVER['REQUEST_URI']?>" method="post"><input name="radio" type="radio" value="een" checked="checked" /><input name="radio" type="radio" value="twee" /><input name="radio" type="radio" value="drie" /><input name="send" type="submit" id="send" value="Submit" /></form>
$_POST['RadioButtonGroup']