Jump to content

form validating


chris_rulez001

Recommended Posts

hi im making a forum hosting sevice, and i would like to know how do i make it so if the checkbox is unticked they cant register.

 

heres what i have:

 

<?php
$tos = $_POST['tos'];

if ($tos == "Unchecked" || $tos == "")
{
//the code carries on

 

is the above how you would check if the checkbox is unticked?

Link to comment
https://forums.phpfreaks.com/topic/61745-form-validating/
Share on other sites

try this to get the concept correct 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>

Link to comment
https://forums.phpfreaks.com/topic/61745-form-validating/#findComment-307456
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.