Help for this page

Select Code to Download


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