Ok, I've got this goint to the browser
HTML Code:
<tr><td><label for="cb_srd_1"><input type="checkbox" name="productlist[1]" value="1" id="cb_srd_1" tabindex="1" />Zizzy</label></td></tr>
<tr><td><label for="cb_srd_2"><input type="checkbox" name="productlist[2]" value="1" id="cb_srd_2" tabindex="1" />Lizzy</label></td></tr>
<tr><td><label for="cb_srd_3"><input type="checkbox" name="productlist[3]" value="1" id="cb_srd_3" tabindex="1" />Dizzy</label></td></tr>
<tr><td><label for="cb_srd_4"><input type="checkbox" name="productlist[4]" value="1" id="cb_srd_4" tabindex="1" />Fizzy</label></td></tr>
And I have this code on the receiving end..
PHP Code:
$productlist = array();
// Clean and globalize the checkbox inputs
globalize ($_POST, array('productlist' => INT));
BUT IT ISN'T WORKING!! AAAAAAAAAAAAARRRRRRRGGGGGGGGHHHHHHHHHH!!