I have a checkbox array (report_type_id[]) that is getting looped through in a foreach loop.
foreach ($_POST['report_type_id'] as $key => $value) {
// DO STUFF
}
After moving to a new server this no longer works...but it works if I turn register_globals = On and change the code to:
foreach ($report_type_id as $key => $value) {
// DO STUFF
}
So my question is how do I access the checkbox array with register_globals = Off?