Jump to content

tsfountain

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

tsfountain's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. 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?
×
×
  • 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.