I dynamically fill in a checkbox's name from a database, like so:
<input name="<?php echo $row_Recordset1['item_id']; ?>" type="checkbox">
and when I look at the page source it's filled it in ok, with the name 'boozekit'.
<input name="boozekit" type="checkbox">
When I submit that to another page and use:
echo $_POST['boozekit'];
I get nothing! Isn't it possible to pass dynamic date via a checkbox?