Hi All
I'm trying to send an associative array via a series of dynamically created checkboxes inside a form.
<form
loop
.
.
echo '<br><input type="checkbox" name="'.$cat['$
shortcat'].'" value="1" '.$checked.'>'.$longcat;
.
.
submit, end form blah blah
$cat['$shortcat'] works when i'm doing other stuff but obviously the quotes are stuffing up the checkbox part of the form.
How else can I do this??
Thanks!