Well when you submit a form and display the infomation, when you use characters such as ' you get \'
Its realy annoying

Well when you submit a form and display the infomation, when you use characters such as ' you get \'
Its realy annoying
stripslashes()
PHP Code:<?php
$example = $_POST["example"];
$example = stripslashes($example);
// OR
$example = stripslashes($_POST["example"]);
?>
Want to hide these adverts? Register an account for free!