using this code in a form
and this to try to get info out the other end
but that just returns N;
what am i doing wrong
TIA
PHP:
<input type="checkbox" id="area[]" value="SRF" /> SRF
<input type="checkbox" id="area[]" value="eSafety" /> eSafety
<input type="checkbox" id="area[]" value="Projects" /> Projects
and this to try to get info out the other end
PHP:
$area=serialize($_POST['area']);
echo $area;
but that just returns N;
what am i doing wrong
TIA