/ Published in: PHP
Removes the automatic slashes from POST & GET data if it finds Magic Quotes is activated.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function remSlash($varvar) { } else { $varRem = $varvar; } return $varRem; } // Ex.: $no_slash = remSlash($_POST['name']);