所以我制作了一个动态表,现在我想让表行可选(最多 1 个)并将信息发送到下一页,您可以在其中编辑您通过动态表选择的 phpmyadmin 表行。但前提是它不太复杂,否则我将通过动态表本身使其可编辑。
这是我到目前为止得到的:
<form action="edit.php" method="post">
<div class="table">
<table cellspacing="0">
<tr class="top">
<th>Titel</th>
<th>Auteur</th>
<th>ISBN13</th>
<th>Uitgever</th>
<th>Pagina's</th>
<th>ID</th>
</tr>
<?php
$sql = "SELECT * FROM books";
$result = $conn->query($sql);
if ($result->num_rows > 0){
while($row = $result->fetch_assoc()){
?>
<tr>
<th><?php echo $row['title']; ?></th>
<th><?php echo $row['author']; ?></th>
<th><?php echo $row['isbn13']; ?></th>
<th><?php echo $row['publisher']; ?></th>
<th><?php echo $row['pages']; ?></th>
<th><?php echo $row['id']; ?></th>
</tr>
<?php
}
} else {
echo "Sorry, maar er zijn nog geen boeken in het assortiment.";
}
$conn->close();
?>
</table>
</div>
<button class="continue" type="submit">Doorgaan</button>
</form>
函数式编程