ホームページ >バックエンド開発 >PHPチュートリアル >php は常にエラーを報告します。コードを確認するのを手伝ってください。
php总是报错,大家帮我看下代码
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ?ストリップスラッシュ($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? 「」。 $theValue 。 "'" : "NULL";
ブレーク;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
Break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? 「」。 $theValue 。 "'" : "NULL";
break;
case "define":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
Break;
}
return $theValue;
}
}
mysql_select_db($database_test, $test);
$query_test = "SELECT * FROM test";
$test = mysql_query($query_test, $test) または die(mysql_error());
$row_test = mysql_fetch_assoc($test);
$totalRows_test = mysql_num_rows( $test);
?>
id | 名前 | パス |
$id | $name< ;/td> | $pass |
mysql_free_result($test);
?>[code=PHP][/code]
=========== ==================
报错:
注意: 未定義の定数 ID の使用 - D:xampphtdocsvestindex.php の 68 行目で 'id' が想定されています
注意: 未定義の定数名の使用 - D:xampphtdocsvestindex.php の 69 行目で「name」と仮定します
注意: 未定義の定数パスの使用 - D:xampphtdocsvestindex.php の行で「pass」と仮定します70
68、69、70この三行は