I use PDO with prepared statement when connecting to my database, and I do this because it is considered a safe way to do so, but one thing I could not help but to wonder was, can submitted data from a form be harmful if you just declare it like:
$entered_email_adress = $_POST['email'];
before inserting the data into the database? Should you sanitize the submitted data anyway, or is there no reason doing so?
