我问了一个关于这个问题的问题 - 在表格中添加一个下拉列表。每个人都专注于<td> href我在表格中的一个,它实际上是有效的,尽管我被告知是过时的语法。
所以我想好吧,他们比我知道的多……所以起初我尝试了那些不起作用的建议。然后我想好了为什么不干脆把这东西拉出来呢?也许它会导致其余代码出现问题。
所以我完全删除了它,所以绝对不是那个 -<td><select>导致问题的正是这个元素。然而,同样的元素可以自己工作......我的其余代码没有它也能工作???
我在这方面的经验是老伙计们,请只是一个小小的帮助就意味着很多
<!DOCTYPE html>
<html>
<head>
<title>LifeSaver DB</title>
<h1> LifeSaver Database </h1>
</head>
<body>
<table>
<tr>
<th>Id</th>
<th>Location</th>
<th>Footage</th>
<th>Notes</th>
</tr>
<?php
$conn = mysqli_connect("localhost", "Me", "Pass", "LifeSaverDB");
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT id, Location, Footage, Notes FROM LifeSaver1";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
//for href row
//$id = $row['id'];
//$Footage = ['Footage'];
echo
"<tr>
<td>" . $row["id"]. "</td>
<td>" . $row["Location"] . "</td>
<td>" . $row["Notes"] . "</td>
<td>
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</td>
</tr>";}
//show table
echo "</table>";
} else { echo "0 results"; }
$conn->close();
?>
</table>
</body>
<style>
table, td, th {
border: 1px solid black;
margin: auto;
}
LEATH
精慕HU