No, definitely no hard feelings. Like I said, sleep_deprivation + frustration = cranky_todd :queasy:
Just one more question. I am naming the checkboxes appropriately, is this the correct method for looping through checking to see if the checkboxes have been checked?
for ($c=1;$c <= $POST['total_rows']; $c++)
{
$npay = "'pay".$c."'";
if (isset($POST[$npay]))
{
Do something
}
}
$npay matches the checkbox name.