-1

我想通过不同的下拉列表显示不同列的数据。每个下拉列表将显示不同表格的数据。这是我的脚本,但它仅在一个下拉列表中显示所有数据。

<?php
$db = mysql_connect('localhost', 'root', '') or
die ('Unable to connect. Check your connection parameters.');
mysql_select_db('mobiledb', $db) or die(mysql_error($db));
?>

<html>
<head>
<title>rest</title>
</head>
<body>
<form action="commit.php method="post">
<table>
<tr>
<td>Movie Type</td>
<td><select name="movie_type">
<?php
$query = 'SELECT 
       customer_id, customer_name, customer_address, customer_order
      FROM
         customers';
$result = mysql_query($query, $db) or die(mysql_error($db));
while ($row = mysql_fetch_assoc($result)) 
{
 echo '<option value="' . $row['customer_id'] . '"> ' . $row['customer_name'] .  '</option>';
echo '<option value="' . $row['customer_id'] . '"> ' . $row['customer_address'] .  '</option>';
echo '<option value="' . $row['customer_id'] . '"> ' . $row['customer_order'] . '</option>';
}
?>
</select></td>
</tr>
</table>
</form>
</body>
</html>
4

1 回答 1

0

如果我理解,这是一个基本的 html 语法:

你得到

<select>
    <option value="...."> customer name</option> 
    <option value="...."> customer address</option> 
    <option value="...."> customer order</option> 
    ...
</select>

你想要

<select>
    <option value="...."> customer name</option> 
    ...
</select>

<select>
    <option value="...."> customer address</option> 
    ...
</select>

<select>
    <option value="...."> customer order</option> 
    ...
</select>

对于 3 个不同的下拉列表,您需要 3 个不同的选择您的代码在同一个元素中生成 3 个不同的回显select(进入相同的元素td

于 2013-08-18T15:15:45.713 回答