2024-11-03 00:02:24 | 我爱编程网
<?php
header("Content-Type: text/html; charset=gb2312");
include("conn.php");
$pageSize = 10;
$page = isset($_GET['p']) ? intval($_GET['p']) : 1 ;
$page = max(1, $page);
$pageIndex = $pageSize * ($page-1);
$sql="select count(*) as num from uu";
$pageQuery = mysql_query($sql);
$numRs = mysql_fetch_array($query);
$totalNum = $numRs['num'];
$sql="select * from uu order by id desc limit {$pageIndex}, {$pageSize}";
$query=mysql_query($sql);
?>
<table width=500 border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#add3ef">
<tr>
<th>ID</th>
<th>用户名</th>
<th>地 址</th>
<th>姓 名</th>
</tr>
<?php
$i = 0;
while($row = mysql_fetch_array($query)){
$color = $i % 2 ? '#add3ef' : '#eff3ff';
?>
<tr bgcolor="<?=$color;?>">
<td><?=$row['id'];?></td>
<td><?=$row['u_user'];?></td>
<td><?=$row['u_add'];?></td>
<td><?=$row['u_name'];?></td>
</tr>
<?php
}
?>
</table>
<?php
$totalPages = ceil(1.0 * $totalNum / $pageSize);
for($i = 1; $i <= $totalPages; $i++) {
?>
<div class="page">
<div class="item_<?=$i;?>"> <?=$i;?> </div>
</div>
<?php
}
?>
<style>
.page div {display: block; width: 36px; height: 36px; padding: 5px; border: 1px solid #ccc; margin:0px 3px;}
</style>
我爱编程网(https://www.52biancheng.com)小编还为大家带来如何让php的输出文本自动换行的相关内容。
自动换行有两种做法。a:程序计算字数,多少个数就加换行字符,b:交给html,css来控制。
主要介绍第2种方法,个人建议使用第2种,毕竟html专门负责这一类的。
div.info{width:400px;margin:0 auto;line-height:30px;word-wrap : break-word ;}
<div class="info">断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行断行</div>
2024-01-05 14:11:24
2025-02-01 20:24:39
2025-02-12 03:21:37
2025-02-10 15:19:48
2025-01-28 17:58:32
2024-11-22 05:08:01