Фильтр нежелаемых GET и POST запросов
В редакторе
Фильтр нежелаемых GET и POST запросов
Brain_Script
813
2018-12-11 19:42:33
foreach ($_GET as $getstr) {
if (eregi('\'|<|>|char|union|select|bench|,|`',$getstr)) {
header("Location: not_query.php");
exit;
}}
foreach ($_POST as $poststr) {
if (eregi('\'|char|union|select|bench|alert|`',$poststr)) {
header("Location: not_query.php");
exit;
}}
Войдите для добавления комментария.