Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare(<<SQL) or die $dbh->errstr;
    select count(*) from userlist
    ...
    SQL
    
    $sth->execute;
    
  2. or download this
    my $sth = $dbh->prepare(<<SQL);
    select count(*) from userlist
    ...
    SQL
    
    $sth->execute($FORM{email});