Hey all,
Looks like I just needed a bit more thought applied to the problem. After the idea of custom naming the delete checkboxes, I realized all I needed to do was check the query string (or the query data in general) for the mere presence of the crossreferenced checkbox name (i.e. at index 1, check to see if Delete1 is present, etc), as this only shows up if the checkbox is checked. After searching on the web for a bit, I finally ended up in the PHP manual website. After some digging through the use of $_REQUEST and isset(), I came up with the following in my processing code:
if (!isset($_REQUEST[("Delete" . ($count + 1))])) {
...//do update stuff
} else { //DeleteX is present
...//do delete stuff
}
my count in the one script started at 1 (whole numbers for the displayed row number), while this one started at 0 (first index of the array elements in the form), so I added one. Guess I could just update the one script for consistency, but I'll save that for later. Just figured I'd post my solution in case anyone else runs into the same problem and comes across this fine forum.