<html>
<head>
<title>The Reservation</title><link rel='stylesheet' href='designstudent.css'>
</head>
<body>
<?php
mysql_connect('localhost', 'root', '')
or die(mysql_error());
mysql_select_db('shuttle_service_system')
or die(mysql_error());
$info =mysql_query("
SELECT DISTINC Location_From AS 'LocationFrom'
FROM trip
");
echo "<select class = 'LocationFrom' select size='1'>";
while($check = mysql_fetch_array($info))
{
echo "<option>" . $check['trip.Location_From'] . "</option>";
}
echo"</select>";
?>
</body>
</html>
大家好我正在使用来自MySQL的下拉菜单制作班车预订系统,我无法让MySQL上的数据显示在下拉菜单中。
答案 0 :(得分:0)
检查错误日志。
您应该收到MySQL异常,因为关键字DISTINCT
拼写错误。
答案 1 :(得分:0)
使用分组按位置_From 而不是不同在mysql中