使用MySQL在PHP中选择选项

时间:2013-11-08 18:39:26

标签: php html mysql

<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上的数据显示在下拉菜单中。

2 个答案:

答案 0 :(得分:0)

检查错误日志。

您应该收到MySQL异常,因为关键字DISTINCT拼写错误。

答案 1 :(得分:0)

使用分组按位置_From 而不是不同在mysql中