查询mysql数据表,在php页面输出表格,要求边框为1,包括Name,Time,Reason和Operation四列,表头居中对齐,内容左对齐
时间: 2024-04-30 19:21:40 浏览: 50
可以使用PHP和HTML的混编来实现该功能,具体步骤如下:
1. 连接MySQL数据库,查询数据表
```
<?php
//连接数据库
$conn = mysqli_connect("localhost","username","password","database");
if (!$conn) {
die("连接失败: " . mysqli_connect_error());
}
//查询数据表
$sql = "SELECT * FROM table_name";
$result = mysqli_query($conn, $sql);
?>
```
2. 输出表格
```
<table border="1">
<thead>
<tr>
<th style="text-align:center">Name</th>
<th style="text-align:center">Time</th>
<th style="text-align:center">Reason</th>
<th style="text-align:center">Operation</th>
</tr>
</thead>
<tbody>
<?php
//循环输出数据
while($row = mysqli_fetch_assoc($result)) {
echo "<tr>";
echo "<td>".$row["Name"]."</td>";
echo "<td>".$row["Time"]."</td>";
echo "<td>".$row["Reason"]."</td>";
echo "<td>".$row["Operation"]."</td>";
echo "</tr>";
}
?>
</tbody>
</table>
```
3. 关闭数据库连接
```
<?php
mysqli_close($conn);
?>
```
注意:在输出表格时,需要将表头居中对齐,内容左对齐,可以使用`style`属性来设置对齐方式。此外,为了保证表格美观,建议在CSS中对表格进行样式调整。
阅读全文