0

我决定在这里重新编写和详细说明,而不是再次发布。

我从 jtheman 收到了以下代码,它允许我从我的数据库中选择 52 个更新,并每周添加一个新的并删除旧的。它绝对完美。

他的代码:

$starttime = strtotime("28 December 2012"); // a recent Friday
  $week = 7 * 24 * 60 * 60; // time value of a week
  $posts = 185; // number of posts in your db
  $limit = 52; // number of shown posts
  $offset = floor((time()-$starttime)/$week); // rounds down difference in weeks from startdate until now
  while ($offset>$posts-$limit) $offset = $offset - ($posts-$limit); 
  // this will start over when you have reached the end of the cycle ie offset 148...

我的查询:

// retrieve all update details
$conn = dbConnect('query');
$sql = "SELECT *
FROM updates
WHERE flag_live = 'Y'
ORDER BY update_id DESC
LIMIT ".$offset.",".$limit;
$result = $conn->query($sql) or die(mysqli_error());
$uInfo = $result->fetch_assoc();

同样,这非常有效。新问题是我在一页上获得 52 个更新,我希望能够设置,比如每页 4 个,并滚动浏览 13 页而不是一页长。

所以,我想要做的是改变这个查询,以便选择 52 个更新(并且每周五添加一个新的并删除一个旧的)但是我只能在页面上一次显示 4 个. 我意识到这不是分页问题,​​因为这是编写查询以基本上执行两个功能。

这可以用子查询来完成吗?我可以只使用 jQuery 滑块或等效项来进行分页,但我真的想避免这种情况。

非常感谢!

4

2 回答 2

1

要在 PHP 代码中解决它(在服务器端),您可以添加一个 url 参数?page=x,其中 x 是您的页码。

计算中几乎相同:

$starttime = strtotime("28 December 2012"); // a recent Friday
$week = 7 * 24 * 60 * 60; // time value of a week
$posts = 185; // number of posts in your db
$totallimit = 52; // number of shown posts (on all pages)
$limit = 4; // number of posts on each page.
$offset = floor((time()-$starttime)/$week); // rounds down difference in weeks from startdate until now
while ($offset>$posts-$totallimit) $offset = $offset - ($posts-$totallimit); 
// this will start over when you have reached the end of the cycle ie offset 148...

// get the page number (or set it to 0 if not set)
if (isset($_GET['page']) && intval($_GET['page'])) $page=intval($_GET['page']);
else $page = 0;

$offset = $offset + ($page*$limit); // correct the offset according to the page number

然后使用您的数据库查询而不进行更改。

然后在您的视图中添加页面链接(如果之前执行上述代码,则此代码有效):

<?php for($p=0;$p<ceil($totallimit/$limit);$p++): ?>
   <a href="mypage.php?page=<?php echo $p; ?>" <?php if ($p==$page) echo 'class="active"'; ?>>Page <?php echo $p+1; ?></a> |
<?php endfor; ?>

(替换mypage.php为您的脚本的正确文件名)

我为当前所选页面的页面锚点添加了一个类,active但是您可以随意执行此操作。

于 2013-01-02T08:35:54.580 回答
0

我认为这就是您的要求.. 使用此“功能”您可以“切换”更多选项,但我认为您不会真正需要它.. 只需更改$limit=数字以满足您的需求。

<?php

  $starttime = strtotime("28 December 2012"); // a recent Friday
  $week = 7 * 24 * 60 * 60; // time value of a week
  $posts = 200; // number of posts in your db
  //$limit = 52; // number of shown posts

if($posts > 100) // or you can enter here $posts == 200, but it is better 2 leave it on "automatic"..
{ 
$limit = 52; //or as many you like like 30
} 
else
{ 
$limit = 6; // or as many you like ie 10 
}

  $offset = floor((time()-$starttime)/$week); // rounds down difference in weeks from     startdate until now
  while ($offset>$posts-$limit) $offset = $offset - ($posts-$limit); 
  // this will make the cycle start over when you have reached the end (ie offset 148)...

  ?>
于 2013-01-01T05:27:22.170 回答