Hi,
I am submitting (post) a form through one page to another
if I had a checkbox on the form like so:
<input type=\"checkbox\" value=\"Hosting\" name=\"hosting\" ".$Hosting." />
$hosting is above set to Checked if necessary
how would i now i f the box is checked?? I have tried:
if ($_POST['hosting'] == "Hosting")
but no luck, i have also tried looking on google, still no luck.
The form only contains one checkbox.
I say that because i have seen code snippets using foreach() but that dont seem to work with this
Any help is greatly appreciated
TIA
Rob