in reply to Multiple Check boxes and Handling

Yes, you need to give each checkbox a unique name. However, checking each one isn't as bad as it sounds. Set the name to something like "delete_this_$oid", as you'll see in a second.

Assuming you can pull the values from the SQL db in an array ( @oid_list ) in the script that parsed the form, you can check the checkbox status of each one as so:

foreach my $oid ( @oid_list ) { if ( $cgi->param( 'delete_this_$oid' ) eq 'on' ) { # do deleteion stuff } }

-----------------------------------------------------
Dr. Michael K. Neylon - mneylon-pm@masemware.com || "You've left the lens cap of your mind on again, Pinky" - The Brain
It's not what you know, but knowing how to find it if you don't know that's important