53063593e3
Final
8 lines
158 B
PHP
8 lines
158 B
PHP
<?php
|
|
function mysql_fix_string($pdo, $string)
|
|
{
|
|
if (get_magic_quotes_gpc()) $string = stripslashes($string);
|
|
return $pdo->quote($string);
|
|
}
|
|
?>
|