Hi
I've got this:
$entry['15']
is a checkbox field. I can successfully get the value of the other fields but not of the checkbox - is there something different I need to do for that type of field?
Hi
I've got this:
$entry['15']
is a checkbox field. I can successfully get the value of the other fields but not of the checkbox - is there something different I need to do for that type of field?
Dump the $entry as a debugging step (either var_dump($entry) or print_r($entry) and see what values it contains, so you know how to access it. Please post the contents of the $entry object at pastebin.com or pastie.org if you need help.