say you have this
One <input type="checkbox" name="checkbox" value="one">
Two <input type="checkbox" name="checkbox" value="two">
Three <input type="checkbox" name="checkbox" value="three">
then in your php page you can do this
if ($POST['checkbox'] == "one")
{
echo "you chose ONE";
}
else if ($POST['checkbox'] == "two")
{
echo "you chose TWO";
}
else if ($_POST['checkbox'] == "three")
{
}echo "you chose THREE";
else
{
echo "you didn't chose anything
}
so yes in that application it is just like a text field for checking, but what happens if you have more that one checked?? you have to do some other weird things with arrays and for loops and such