Jump to content

Checking 'empty' on radio button


tsfountain

Recommended Posts

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?
Link to comment
https://forums.phpfreaks.com/topic/6291-checking-empty-on-radio-button/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.