因此,我無法理解如何單獨修改 SQL 條目,同時將所有結果打印到屏幕上。我有 root_user.php 將除 root_user 之外的所有用戶打印到屏幕上,并在每個要求批準或拒絕的用戶旁邊都有 hrefs。在我看來,我需要 approve.php 和 deny.php 才能編寫 SQL 查詢,但我不知道如何從列表中獲取單個條目,然后在 approve 或 deny.php 中修改它文件?,F在我只有 Approve 和 Deny 鏈接,可以將您發(fā)送到空的 approve 或 deny.php。有人知道我可以去哪里嗎?到目前為止我的代碼:<?phprequire('database.php');$query = 'SELECT * FROM credentials WHERE access_level != 0 ORDER BY email';$statement = $db->prepare($query);$statement->execute();$credentials = $statement->fetchAll();$statement->closeCursor();?><!DOCTYPE html><html><!-- the head section --><head> <title>root</title> <link rel="stylesheet" type="text/css" href="main.css" /></head><!-- the body section --><body><main> <section> <table> <tr> <th>Email</th> <th>Access Level</th> <th class="right">Actions</th> </tr> <?php foreach ($credentials as $credential) : ?> <tr> <td><?php echo $credential['email']; ?></td> <td><?php if($credential['access_level'] == 1) { echo "Admin"; } else { echo "Scheduler"; } ?></td> <td class="right"><a href="approve.php" class="button-class">Approve</a> <td class="right"><a href="deny.php" class="button-class">Deny</a></td> </tr> <?php endforeach; ?> </table> </section></main><footer></footer></body></html>
使用 PHP hreferences 修改 SQL 條目
12345678_0001
2022-12-23 14:42:23