Hey people,
I'm building a public webform that anyone can use, but I'm unsure about the security measures I should take when handling the data people submit.
At the moment I have a field and I do the following with it before submitting it to a database:
$text = $_POST['text'];
$text = htmlspecialchars($text );
$text = stripslashes($text );
Is that enough to keep my form secure? or should I be doing a whole lot more?
Thanks.