Jump to content

Adding Checkboxes or Radio Buttons to a form


autodefrost

Recommended Posts

sorry wrote this 1 hour ago so i thort might come handy but please sudy the links ok.

 


<?php

if(isset($_POST['submit'])){

if(empty ($one)){

echo "<br><br>unchecked 1<br><br>";

}else{

echo "<br><br>checked 1<br><br>";
}


if(empty ($two)){

echo "<br><br>unchecked 2<br><br>";

}else{

echo "<br><br>checked 2<br><br>";
}


if(empty ($three)){

echo "<br><br>unchecked 3<br><br>";

}else{

echo "<br><br>checked 3<br><br>";
}


if(empty ($four)){

echo "<br><br>unchecked 4<br><br>";

}else{

echo "<br><br>checked 4<br><br>";
}

}
?>


<form method="POST" action="<?php echo $_SERVER['PHP_SELF'] ?>">
<br><br>
check box 1
<input type="checkbox" name="one">
<br><br>
check box 2
<input type="checkbox" name="two">
<br><br>
check box 3
<input type="checkbox" name="three">
<br><br>
check box 4
<input type="checkbox" name="four">
<br>
<br>
<input type="submit" name="submit" value="cheek">
</form>

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.