我使用了php分页教程:http://www.phpeasystep.com/phptu/29.html。而且它说很容易我没想到会有任何问题。但是,我遇到过一个。现在我知道最好的结果你应该看到我的源代码,所以我将提供它。问题是它查询正常并且只在页面上显示某些数据,如果成员是正确的并且每页只限制几个...但是当我尝试更改以查看下一个更多注释时它不会更改值页。
<?php
/* $dbLink = mysql_connect("localhost", "sco0100_james", "creeper");
mysql_query("SET character_set_results=utf8", $dbLink);
mb_language('uni');
mb_internal_encoding('UTF-8');
*/
include('config.php'); // include your code to connect to DB.
$tbl_name="commenttable"; //your table name
$adjacents = 3;
/*
First get total number of rows in data table.
If you have a WHERE clause in your query, make sure you mirror it here.
*/
$query = "SELECT COUNT(*) as num FROM $tbl_name";
$total_pages = mysql_fetch_array(mysql_query($query));
$total_pages = $total_pages[num];
/* Setup vars for query. */
$targetpage = "profile.php?id=$id"; //the name of this file
$limit = 3; //how many items to show per page
$page = $_GET['page'];
if($page)
$start = ($page - 1) * $limit;
//first item to display on this page
else
$start = 0; //if no page var is given, set start to 0
/* Get data. */
$sql = "SELECT id, name, comment, member1, member2 FROM $tbl_name WHERE member2='".$id."' ORDER BY id ASC LIMIT $start, $limit";
$result = mysql_query($sql);
/* Setup page vars for display. */
if ($page == 0)
$page = 1; //if no page var is given, default to 1.
$prev = $page - 1; //previous page is page - 1
$next = $page + 1; //next page is page + 1
$lastpage = ceil($total_pages/$limit);
//lastpage is = total pages / items per page, rounded up.
$lpm1 = $lastpage - 1; //last page minus 1
/*
Now we apply our rules and draw the pagination object.
We're actually saving the code to a variable in case
we want to draw it more than once.
*/
$pagination = "";
if($lastpage > 1)
{
$pagination .= "<div class=\"pagination\">";
//previous button
if ($page > 1)
$pagination.= "<a href=\"$targetpage?page=$prev\">previous</a>";
else
$pagination.= "<span class=\"disabled\">� previous</span>";
//pages
if ($lastpage < 7 + ($adjacents * 2))
//not enough pages to bother breaking it up
{
for ($counter = 1; $counter <= $lastpage; $counter++)
{
if ($counter == $page)
$pagination.= "<span class=\"current\">$counter</span>";
else
$pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";
}
}
elseif($lastpage > 5 + ($adjacents * 2))
//enough pages to hide some
{
//close to beginning; only hide later pages
if($page < 1 + ($adjacents * 2))
{
for ($counter = 1; $counter < 4 + ($adjacents * 2); $counter++)
{
if ($counter == $page)
$pagination.= "<span class=\"current\">$counter</span>";
else
$pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";
}
$pagination.= "...";
$pagination.= "<a href=\"$targetpage?page=$lpm1\">$lpm1</a>";
$pagination.= "<a href=\"$targetpage?page=$lastpage\">$lastpage</a>";
}
//in middle; hide some front and some back
elseif($lastpage - ($adjacents * 2) > $page && $page > ($adjacents * 2))
{
$pagination.= "<a href=\"$targetpage?page=1\">1</a>";
$pagination.= "<a href=\"$targetpage?page=2\">2</a>";
$pagination.= "...";
for ($counter = $page - $adjacents; $counter <= $page + $adjacents; $counter++)
{
if ($counter == $page)
$pagination.= "<span class=\"current\">$counter</span>";
else
$pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";
}
$pagination.= "...";
$pagination.= "<a href=\"$targetpage?page=$lpm1\">$lpm1</a>";
$pagination.= "<a href=\"$targetpage?page=$lastpage\">$lastpage</a>";
}
//close to end; only hide early pages
else
{
$pagination.= "<a href=\"$targetpage?page=1\">1</a>";
$pagination.= "<a href=\"$targetpage?page=2\">2</a>";
$pagination.= "...";
for ($counter = $lastpage - (2 + ($adjacents * 2)); $counter <= $lastpage; $counter++)
{
if ($counter == $page)
$pagination.= "<span class=\"current\">$counter</span>";
else
$pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";
}
}
}
//next button
if ($page < $counter - 1)
$pagination.= "<a href=\"$targetpage?page=$next\">next</a>";
else
$pagination.= "<span class=\"disabled\">next</span>";
$pagination.= "</div>\n";
}
while($row = mysql_fetch_array($result))
{
$cname= $row['name'];
$comment= $row['comment'];
echo $cname . '<br/>' . '<br/>' . $comment . '<br/>' . '<br/>' . '<hr size="1"/>';
}
?>
<?=$pagination?>
我怀疑问题可能是我的$ targetpage,它会打开配置文件的不同数据,具体取决于每个不同用户的ID。但是我不知道如何纠正这个问题,或者这是否是问题......任何人都可以看到错误吗? (FIXED)
答案 0 :(得分:1)
是的,$targetpage
不正确:
$targetpage = "profile.php?id=$id";
会产生类似profile.php?id=42
的内容。然后,在您的网址中使用该字符串:
<a href=\"$targetpage?page=$counter etc..." />
为您提供实际生成的HTML:
<a href="profile.php?id=42?page=XXX" />
这是不正确的。查询字符串应该只有一个?
。您需要将&
用于后续参数,例如:
<a href=\"$targetpage&page=$counter etc..." />
^--- &, not ?
答案 1 :(得分:0)
您的SQL查询应包含TOP和LIMIT值,因此您可以选择所需的范围(页面)。类似的东西:
$items_per_page = 10;
$query = "SELECT TOP $items_per_page * FROM table LIMIT ". $items_per_page * $REQUEST['page'];