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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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