add slashes to string

71

<?php
$str = "O'Reilly?";
eval("echo '" . addslashes($str) . "';");
?>

str = str.replace(/'/g, "\\'");

Comments

Submit
0 Comments