tsfountain Posted March 31, 2006 Share Posted March 31, 2006 Hello all,I'm trying to check the state of a radio button group using empty to run a post variable into a session variable.HTML looks something like this:[code]<input type="radio" name="foo" value="bar1">BAR1</input><input type="radio" name="foo" value="bar2">BAR2</input>[/code]Then I'm checking (on submit) to see if they've acually selected a radio button.[code]if (!empty($_POST['foo'])) { $_SESSION['foo'] = $_POST['foo'];}else { echo " Yuo haven't filled in anything";}[/code]The problem is it never gets to the else statement even if it is empty.Any ideas? Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted March 31, 2006 Share Posted March 31, 2006 It returns [i]Yuo haven't filled in anything[/i] for me as its reaching the else statement Quote Link to comment Share on other sites More sharing options...
Barand Posted March 31, 2006 Share Posted March 31, 2006 useif (isset($_POST['foo'])) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.