我无法理解错误。代码有什么问题? 我有一个名为“test”的数据库,所以我不应该像$ test那样定义测试。
HTML code:
<html>
<head><title>SOmething</title></head>
<body>
<form name="fm" method="POST" action="cafe.php">
Customer ID:<input type="text" name="cus"><br>
Food Name:<input type="text" name="food"><br>
Order ID:<input type="text" name="order"><br>
</form>
</body>
</html>
PHP代码:
<?php
$isMySQLConnected=mysql_connect("localhost","root");
if($isMySQLConnected){
echo "We are Connected to MySQL<br>";
}
$isDBConnected=mysql_select_db(test);
if($isDBConnected){
echo "We are Connected to Test DataBase";
}
$cus=$_POST['cus'];
$food=$_POST['food'];
$order=$_POST['order'];
?>
错误:
我们已连接到MySQL
注意:使用未定义的常量测试 - 假定为'test' 第6行的C:\ xampp \ htdocs \ assign \ cafe.php我们连接到测试 数据库
注意:未定义的索引:cus在C:\ xampp \ htdocs \ assign \ cafe.php上 第10行
注意:未定义的索引:C:\ xampp \ htdocs \ assign \ cafe.php中的食物 第11行
注意:未定义的索引:C:\ xampp \ htdocs \ assign \ cafe.php中的顺序 第12行