PHP 预防SQL注入 - básico

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 预防SQL注入 - básico相关的知识,希望对你有一定的参考价值。

<?php
$name = htmlspecialchars($_GET['name']);
$password = htmlspecialchars($_GET['password']);
$country = htmlspecialchars($_GET['country']);
$age = htmlspecialchars($_GET['age']);

$integer = (int) $integer;

/*
This function must always (with few exceptions) be used to make data safe before sending a query to MySQL.
*/
$string = mysql_real_escape_string($string);
?>

以上是关于PHP 预防SQL注入 - básico的主要内容,如果未能解决你的问题,请参考以下文章

PHP POST, GET 参数过滤,预防sql注入函数

PHP POST, GET 参数过滤,预防sql注入函数

sql注入的原理是什么,怎么预防sql注入

84)PHP,SQL注入基础讲解

Laravel 预防 SQL 注入

Laravel 预防 SQL 注入