Hello
I have the following in a form, that gets submitted to another page:
But when i do:
Everytime i get "13", even if #13 isn't ticked, or if more than one is ticked etc.
:S
I have the following in a form, that gets submitted to another page:
Code:
<input type="checkbox" name="oursite" value="1" />
<input type="checkbox" name="oursite" value="2" />
... and so on, till
<input type="checkbox" name="oursite" value="13" />
PHP:
$oursite = strip_tags($_POST['oursite']);
echo $oursite;
:S