Hi Chaddro,

a problem with check boxes is that they only can be checked, not "unchecked".

A checked checkbox may post a value of 1 to the next page.
i.e.: $_POST['quick_updates_new']['product_is_call'] = 1

But an unchecked checkbox does not post any data, and so it is the same as having no checkbox at all. That is why it can only switch on what is off, but not the other way around (I hope this explanation makes sense...).

A way around this is to use 2 radio inputs (true/false or on/off or whatever). There are other ways to solve it of course, but I think using the radio inputs is the easiest in this case.