Tell me what screening to do for the fields "FULL NAME", "telephone" and "Description". At the moment I have the following
$name = $row['name']; $name = strip_tags($name); $name = htmlspecialchars($name); $name = mysqli_escape_string ($connection, $name); $name = addslashes($name); but it looks too crooked.
Moreover, the format should be the following - phi- "'", phone- "+0", description- "' /"! @ # $% ^ & * () _ `".
And where to display the check in the body of the code or when checking $ _POST (at the beginning of the page)?
Thank you in advance.
?and use the binding of variables to the query php.net/manual/ru/mysqli-stmt.bind-param.php - Mike