gpt4 book ai didi

php - 带有数据库值的 HTML 表格

转载 作者:行者123 更新时间:2023-11-30 22:57:05 25 4
gpt4 key购买 nike

<分区>

我创建了一个包含数据库值的 HTML 表

<?php
include 'conexao.php';
echo "<div id='table'>
<table >
<tr>
<th class='first'>Selecione</th>
<th>Mês</th>
<th>Valor</th>
</tr>";
$result = mysql_query('SELECT * FROM cpf');
if (!$result) {
die('Invalid query: ' . mysql_error());
}
while($row = mysql_fetch_array( $result )) {
echo "<tr>
<td class='first'><input type='radio' name='selecione'/></td>
<td>". $row['mes'] ."</td>
<td>". number_format($row['valor'], 2, ',', '.') ."</td>
</tr>";
}
echo "</table></div>";
?>

嗯,效果很好,但是当我有很多值时,我必须向下滚动页面。例如,当我有超过 10 个值时,我想为我的表创建“页码”。

是这样的:http://www.phpgrid.org/demo-center/

观察:我不想像链接中的表格那样完成表格,因为我想将我的样式应用于表格...

有人可以帮助我吗?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com