Answers for "how to prevent sql injection in method in php"

PHP
4

How can I prevent SQL injection in PHP?

//Connect
$unsafe_variable = $_POST["user-input"];
$safe_variable = mysql_real_escape_string($unsafe_variable);

mysql_query("INSERT INTO table (column) VALUES ('" . $safe_variable . "')");
//Disconnect
Posted by: Guest on May-18-2020
1

prevent SQL injection in PHP?

$str = "<script>alert('Hacked')</script>";
echo htmlentities($str);
Posted by: Guest on October-02-2021

Code answers related to "how to prevent sql injection in method in php"

Browse Popular Code Answers by Language