PHP table表格居中
时间: 2024-10-09 11:07:36 浏览: 47
php-asciitable
在PHP中,要创建一个表格并使其水平居中,你需要结合HTML和CSS来实现。这里是一个简单的例子,展示了如何在PHP代码中生成一个居中的表格:
```php
<!DOCTYPE html>
<html lang="zh">
<head>
<style>
.center-table {
margin-left: auto;
margin-right: auto;
text-align: center; /* 使得表格内的内容也居中 */
}
</style>
</head>
<body>
<?php
$table_data = array(
array("姓名", "年龄"),
array("张三", "25"),
array("李四", "30"),
// 添加更多数据...
);
echo "<div class='center-table'>";
echo "<table>";
foreach ($table_data as $row) {
echo "<tr>";
foreach ($row as $cell) {
echo "<td>$cell</td>";
}
echo "</tr>";
}
echo "</table>";
echo "</div>";
?>
</body>
</html>
```
这段代码首先在CSS中定义了一个名为`.center-table`的样式,设置了左右margin为auto,使表格在页面上居中。然后在PHP中动态生成表格内容。
阅读全文