Help for this page

Select Code to Download


  1. or download this
      state = 'CA'
    
  2. or download this
      my $sql = "SELECT city FROM table WHERE state = ?";
      my $sth = $dbh->prepare($sql);
      $dbh->execute($FORM{state});
    
  3. or download this
      1; drop table database
    
  4. or download this
      use CGI;
    
    ...
      ...
      my $sth = $dbh->prepare($sql);
      $sth->execute($cgi->param('state')) or die ...