Re: Deleting rows using checkboxes and PostgreSQL

2001-07-09 Thread darren chamberlain
skazat <[EMAIL PROTECTED]> said something to this effect on 07/09/2001: > use the CGI.pm module, checkbox values will come back as an array, so do > something like, > > > my $q = new CGI; > my @checked_values = $q->param('whatever_row_i_want_to_chuck'); > > > then use the DBI module to chuck

Re: Deleting rows using checkboxes and PostgreSQL

2001-07-09 Thread skazat
use the CGI.pm module, checkbox values will come back as an array, so do something like, my $q = new CGI; my @checked_values = $q->param('whatever_row_i_want_to_chuck'); then use the DBI module to chuck it from the SQL table, use DBI; my $dbh = DBI->connect("$data_source", $user, $pass);

Deleting rows using checkboxes and PostgreSQL

2001-07-08 Thread Daniel Falkenberg
List, I have come accross a slightly large hurdle in one of my perl scripts. Basically I have a list that prints out some *crud* from a PostgreSQL table. Each row has a checkbox located next to it. I want to be able to have the user select as many of these check boxes as they desire and then pre