Jump to content

Just looking for a tutorial for scripting radio buttons.


KDM

Recommended Posts

<html>
<head>
<title>My Page</title>
</head>
<body>
<form name="myform" action="path/to/php/file.php" method="POST">
<div align="center"><br>
<input type="radio" name="group1" value="Milk"> Milk<br>
<input type="radio" name="group1" value="Butter" checked> Butter<br>
<input type="radio" name="group1" value="Cheese"> Cheese
<hr>
<input type="radio" name="group2" value="Water"> Water<br>
<input type="radio" name="group2" value="Beer"> Beer<br>
<input type="radio" name="group2" value="Wine" checked> Wine<br>
<input type="submit" name="submit" value="Submit" />
</div>
</form>
</body>
</html>

 

then you will grab it in file.php

 

if(!empty($_POST['submit'])){ //check if the submit button was clicked
      $radio_value = $_POST['myForm']; //will be set to chosen value
      if($radio_value == "Milk"){ //if the user selected millk
            //act accordingly
      }elseif($radio_value == "Butter"){//if buter is selected
            //act accordingly
      }
}

etc...

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.