Help for this page

Select Code to Download


  1. or download this
    my $quote_string = "The movie \"A Beautiful Mind\" might win an Academ
    +y Award";
    $sql_string =~ s/"/'/g;
    
    # Whatever SQL functions would follow...
    
  2. or download this
    my $quote_string = "The movie \"A Beautiful Mind\" might win an Academ
    +y Award";
    $sql_string = $dbh->quote($sql_string);
    
    # etc.