gpt4 book ai didi

php - 如何在 PHP 分页中继续保留 sql 结果中的行数?

转载 作者:行者123 更新时间:2023-11-29 05:06:34 24 4
gpt4 key购买 nike

我有这些 PHP 代码可以生成结果和分页。

对于这段代码,我为每页设置了 5 行。但问题是当我点击下一页时,number 并没有持续增加。

我想要实现的是当它到达第一页时,数字将是 (1-5),第二页是 (5-10)。

这是我的代码:

index.php

<?php include "config.php"; ?>
<div>
<table>
<thead>
<tr>
<th>Number</th>
<th>name</th>
<th>address</th>
</tr>
</thead>
<tbody>
<?php for( $i = 0; $i < count( $results->data ); $i++ ) : ?>
<tr>
<td><?php echo $page++; ?></td>
<td><?php echo $results->data[$i]['name']; ?></td>
<td><?php echo $results->data[$i]['address']; ?></td>
</tr>
<?php endfor; ?>
</tbody>
</table>
</div>
<?php echo $Paginator->createLinks($links); ?>

config.php

<?php
$user = "root";
$pass = "";
try {
$connect = new PDO('mysql:host=localhost;dbname=database', $user, $pass);
} catch (PDOException $e) {
print "Error!: " . $e->getMessage() . "<br/>";
die();
}
$limit = ( isset( $_GET['limit'] ) ) ? $_GET['limit'] : 5;
$page = ( isset( $_GET['page'] ) ) ? $_GET['page'] : 1;
$links = ( isset( $_GET['links'] ) ) ? $_GET['links'] : 7;
$query = "SELECT * FROM table ORDER BY id DESC";

require_once 'Paginator.php';
$Paginator = new Paginator($connect, $query);
$results = $Paginator->getData($limit, $page);
?>

Paginator.php

<?php
class Paginator {
private $konek;
private $batas;
private $halaman;
private $habeit;
private $semua;

public function __construct($conn, $query) {

$this->konek = $conn;
$this->habeit = $query;

$rs= $this->konek->prepare( $this->habeit );
$rs->execute();
$this->semua = $rs->rowCount();

}

public function getData( $limit = 10, $page = 1 ) {

$this->batas = $limit;
$this->halaman = $page;

if ( $this->batas == 'all' ) {
$query = $this->habeit;
} else {
$query = $this->habeit . " LIMIT " . ( ( $this->halaman - 1 ) * $this->batas ) . ", $this->batas";
}
$rs = $this->konek->prepare( $query );
$rs->execute();
while ( $row = $rs->fetch(PDO::FETCH_ASSOC) ) {
$results[] = $row;
}

$result = new stdClass();
$result->page = $this->halaman;
$result->limit = $this->batas;
$result->total = $this->semua;
$result->data = $results;

return $result;
}

public function createLinks( $links ) {
if ( $this->batas == 'all' ) {
return '';
}
$last = ceil( $this->semua / $this->batas );

$start = ( ( $this->halaman - $links ) > 0 ) ? $this->halaman - $links : 1;
$end = ( ( $this->halaman + $links ) < $last ) ? $this->halaman + $links : $last;

$html = '<ul class="pagination">';

$class = ( $this->halaman == 1 ) ? "disabled" : "";
$html .= '<li class="' . $class . ' symbol"><a href="?limit=' . $this->batas . '&page=1">&laquo;</a></li>';
$html .= '<li class="' . $class . ' symbol"><a href="?limit=' . $this->batas . '&page=' . ( $this->halaman - 1 ) . '">&lsaquo;</a></li>';

if ( $start > 1 ) {
$html .= '<li><a href="?limit=' . $this->batas . '&page=1">1</a></li>';
$html .= '<li><span class="titik">...</span></li>';
}

for ( $i = $start ; $i <= $end; $i++ ) {
$class = ( $this->halaman == $i ) ? "active" : "";
$html .= '<li class="' . $class . '"><a href="?limit=' . $this->batas . '&page=' . $i . '">' . $i . '</a></li>';
}

if ( $end < $last ) {
$html .= '<li class="disabled"><span>...</span></li>';
$html .= '<li><a href="?limit=' . $this->batas . '&page=' . $last . '">' . $last . '</a></li>';
}

$class = ( $this->halaman == $last ) ? "disabled" : "";
$html .= '<li class="' . $class . ' symbol"><a href="?limit=' . $this->batas . '&page=' . ( $this->halaman + 1 ) . '">&rsaquo;</a></li>';
$html .= '<li class="' . $class . ' symbol"><a href="?limit=' . $this->batas . '&page=' . ( $last ) . '">&raquo;</a></li>';

$html .= '</ul>';

return $html;
}

}

如果有人能帮我解决这个问题,我将不胜感激。谢谢。

最佳答案

代替

<td><?php echo $page++; ?></td>

使用

<td><?php echo ($page - 1) * 5 + $i; ?></td>

如果您在第一页,$page 将为 1。对于第一个循环,它将计算如下:

<td><?php echo (1 - 1) * 5 + 1 ?></td>

它打印1,所以对于第2页,输出将从6开始

关于php - 如何在 PHP 分页中继续保留 sql 结果中的行数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46680655/

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