_include-connection.php
来自「Time 4 Crime online」· PHP 代码 · 共 19 行
PHP
19 行
<?php
ob_start();
$passwordthatmustbesecret = "";
$hostthatmustbesecret = "localhost";
$usernamethatmustbesecret = "";
$databasethatmustbesecret = "";
function quote_smart($value) {
if (get_magic_quotes_gpc()) {
$value = stripslashes($value);
}
if(version_compare(phpversion(),"4.3.0") == "-1") {
return mysql_escape_string($value);
} else {
return mysql_real_escape_string($value);
}
}
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?