PHP form validation question?
Posted
by GeNx
on Stack Overflow
See other posts from Stack Overflow
or by GeNx
Published on 2010-03-25T08:04:01Z
Indexed on
2010/03/25
8:13 UTC
Read the original article
Hit count: 352
php
|validation
Is it necessary to validate a name or street address? when I have it coded in the following format. And if so why?
$address = mysqli_real_escape_string($mysqli, htmlentities($_POST['address']));
$name = mysqli_real_escape_string($mysqli, htmlentities($_POST['name']));
© Stack Overflow or respective owner