I\'m using MySQL API\'s function
mysql_real_escape_string()
Based on the documentation, it escapes the following characters:
couldn't one just delete the single quote(s) from user input?
eg: $input =~ s/\'|\"//g;
$input =~ s/\'|\"//g;