我是 php 新手,我正在学习基础知识,我设计了一个具有动态下拉菜单的表单,其中选项直接从我的 Access DB 填充。用户选择一个选项后,与该选项相关的信息会显示在操作页面中,但不能正常工作。我运行我的代码好几天,我似乎没有得到什么是错的。注释代码似乎是我的问题之源。这是代码
<html>
<head>
<title>Menu</title>
</head>
<body>
<?php
// This would be the value passed from the previous php page
$option =$_POST['myDropdown'];
// for testing purposes
print("$option");
// print image of the menu item or dish
print <<< HERE
<p>
<img src = "DishesPictures/Dish-$option.png" border="1" bordercolor="black"
alt = "die: $option" />
</p>
HERE;
$conn = new COM("ADODB.Connection") or die("Cannot start ADO");
$connString= "Provider=Microsoft.Jet.OLEDB.4.0;
Data Source=e:\\ectserver\\naljalidi\\Database\\Menu.mdb";
//creates the connection object and define the connection string
// for testing purposes
print("$connString");
$rs=$conn->Execute("SELECT ItemID,ItemDesc,Price FROM Menu WHERE ItemID=$option;");
//if (!$rs->EOF)
//{
// $ItemID=$rs->Fields("ItemID");
// $ItemDesc=$rs->Fields("ItemDesc");
// print("$ItemID");
// print("$ItemDesc");
//}
$rs->Close();
?>
</body>
</html>
我的数据库信息: 数据库名称: 菜单表: 只有一个,命名菜单字段: ItemID(PK, AutoNumber), ItemDesc(Text), Price(Currancy)
有什么帮助吗?谢谢