- or download this
my $c_first = $query->param('c_first');
my $c_address = $query->param('c_address');
...
}
$sth->finish();
}
- or download this
my $sql = "SELECT id FROM names WHERE first = ?";
my $sth = $dbh->prepare( $sql );
...
}
$sth->finish();
}
- or download this
$c_first = $dbh->quote( $c_first ); # make O'Brian safe
...
}
$sth->finish();
}