找出这段代码的错误并给出正确答案<html> <head> <meta charset="utf-8" /> <link rel="stylesheet" type="text/css" href="css/style.css"/> <script type="text/javascript" src="js/index.js"></script> <title>学生成绩管理系统</title> </head> <body> <h1>学生成绩管理系统</h1> <table> <!-- 学生成绩表格 --> <tr> <td><a href="insert.php"><button>添加</button></a></td> </tr> </table> </body> </html> <?php result_once('./server.conn.php'); $sql = "select * from result"; $result = $conn->query($sql); if ($result->num_rows > 0) { //输出数据 while($row = $result->fetch_assoc()) { ?> <tr> <td><?php echo $row['id'] ?></td> <td><?php echo $row['name'] ?></td> <td><?php echo $row['age'] ?></td> <td><?php echo $row['result'] ?></td> <td> <button onclick="toUpdate(this)">修改</button> <button onclick="remove(this)">删除</button> </td> </tr> <?php } } $conn->close(); ?> <script type="text/jscript"> function remove(ele){ //删除成绩 let id = ele.parentElement.parentElement.children[0].innerText; window.location.href="./server/remove_server.php?id=" + id; } function toUpdate(ele){ //跳转到成绩修改页面 let id = ele.parentElement.parentElement.children[0].innerText; window.location.href="./update.php?id=" + id; } </script>
时间: 2023-11-02 16:55:47 浏览: 164
动态爱心表白代码 html js网页源代码 情人节送女友礼物 浪漫编程 程序员表白 《点燃我温暖你》
5星 · 资源好评率100%
这段代码的错误在于在 PHP 代码块的开头有一个多余的空格。正确的代码应该是:
```php
<?php
require_once('./server.conn.php');
$sql = "select * from result";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
//输出数据
while($row = $result->fetch_assoc()) {
?>
<tr>
<td><?php echo $row['id'] ?></td>
<td><?php echo $row['name'] ?></td>
<td><?php echo $row['age'] ?></td>
<td><?php echo $row['result'] ?></td>
<td>
<button onclick="toUpdate(this)">修改</button>
<button onclick="remove(this)">删除</button>
</td>
</tr>
<?php
}
}
$conn->close();
?>
<script type="text/jscript">
function remove(ele) { //删除成绩
let id = ele.parentElement.parentElement.children[0].innerText;
window.location.href="./server/remove_server.php?id=" + id;
}
function toUpdate(ele) { //跳转到成绩修改页面
let id = ele.parentElement.parentElement.children[0].innerText;
window.location.href="./update.php?id=" + id;
}
</script>
```
阅读全文