initial commit

This commit is contained in:
lopar
2018-01-28 18:40:49 +02:00
commit 46c75d1542
8193 changed files with 183296 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
$mysql = mysql_connect('localhost','old-dark','7VnpeGCEeBV4f6zF');
mysql_select_db ('ccombat', $mysql);
mysql_query('SET NAMES CP1251');
if (!$google) {
foreach ($_POST as $k=>$v) {
$_POST[$k] = htmlspecialchars(mysql_real_escape_string($v), NULL, "");
}
foreach ($_GET as $k=>$v) {
$_GET[$k] = htmlspecialchars(mysql_real_escape_string($v), NULL, "");
}
foreach ($_REQUEST as $k=>$v) {
$_REQUEST[$k] = htmlspecialchars(mysql_real_escape_string($v), NULL, "");
}
}
?>