0335342e00
First Draft of the Example Files
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);
|
|
}
|
|
?>
|