You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
491 B
PHTML

<?php
14 years ago
if($debug)
echo "secure.php START<br />\n";
14 years ago
foreach ($_GET as $k => $v) {
$v = htmlentities($v, ENT_QUOTES);
preg_replace('/([\'"`\'])/', '', $v);
$_GET[$k] = $v;
14 years ago
if($debug)
echo "GET $k=\"$v\"<br />";
}
foreach ($_POST as $k => $v) {
$v = htmlentities($v, ENT_QUOTES);
preg_replace('/([\'"`\'])/', '', $v);
$_POST[$k] = $v;
14 years ago
if($debug)
echo "POST $k=\"$v\"<br />";
}
14 years ago
if($debug)
echo "secure.php END<br />\n";
?>