我是4个月新的php(所以要温和),我试图确定表格中有多少行(人)填充我的页面(满足条件)。我认为我走在正确的轨道上,但是因为我还是个新人,所以可能有更好的方式去做我正在做的事情......
我正在使用$ myid查询我的信息,查询条件为一条记录。我用它来'检索'和'爆炸'一个数组(实际上是4个独立的数组 - 朋友,被阻止,感兴趣,被丢弃)。没问题......
然后我执行与上面相同的查询,但没有$ myid作为条件(获取其他数据)
以下是我认为我丢球的地方: 我试图只从第二个查询运行一个while循环,如果其他数据不在我的4个数组中的任何一个...同时计算$ nr(行数)。
[ while($row = mysql_fetch_array($sql)) {
$mem2 = $row['id'];
if (!in_array($mem2, $mydiscard_array)) {
if (!in_array($mem2, $myblocked_array)) {
if (!in_array($mem2, $myinterested_array)) {
if (!in_array($mem2, $myfriend_array)) {
$nr = $nr + 1; // this only adds if !in_arrays ////
} // end of $discard_array condition
} // end of $blocked_array condition
} // end of $interested_array condition
} // end of $friend_array condition
} //// close while loop
$variableA= '';
$variableB= '';
$variableC= '';
if ($nr == 0) { // zero out all php variable to ""; and skip processing others data
} else { /// run the pagination code here
/// run the populate other people's data code here
} // place this below populated data and output ]
/////////// 然后我做分页代码:(我将从上面的else命令开始) ////////////
[ } else {
if (isset($_GET['pn'])) { // Get pn from URL vars if it is present
$pn = preg_replace('#[^0-9]#i', '', $_GET['pn']); // filter everything but numbers for security(new)
} else { // If the pn URL variable is not present force it to be value of page number 1
$pn = 1;
}
//This is where we set how many database items to show on each page
$itemsPerPage = 5;
// Get the value of the last page in the pagination result set
$lastPage = ceil($nr / $itemsPerPage);
// Be sure URL variable $pn(page number) is no lower than page 1 and no higher than $lastpage
if ($pn < 1) { // If it is less than 1
$pn = 1; // force if to be 1
} else if ($pn > $lastPage) { // if it is greater than $lastpage
$pn = $lastPage; // force it to be $lastpage's value
}
// This creates the numbers to click in between the next and back buttons
$centerPages = ""; // Initialize this variable
$sub1 = $pn - 1;
$sub2 = $pn - 2;
$add1 = $pn + 1;
$add2 = $pn + 2;
if ($pn == 1) {
$centerPages .= ' <span class="pagNumActive">' . $pn . '</span> ';
$centerPages .= ' <a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $add1 . '">' . $add1 . '</a> ';
} else if ($pn == $lastPage) {
$centerPages .= ' <a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $sub1 . '">' . $sub1 . '</a> ';
$centerPages .= ' <span class="pagNumActive">' . $pn . '</span> ';
} else if ($pn > 2 && $pn < ($lastPage - 1)) {
$centerPages .= ' <a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $sub2 . '">' . $sub2 . '</a> ';
$centerPages .= ' <a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $sub1 . '">' . $sub1 . '</a> ';
$centerPages .= ' <span class="pagNumActive">' . $pn . '</span> ';
$centerPages .= ' <a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $add1 . '">' . $add1 . '</a> ';
$centerPages .= ' <a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $add2 . '">' . $add2 . '</a> ';
} else if ($pn > 1 && $pn < $lastPage) {
$centerPages .= ' <a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $sub1 . '">' . $sub1 . '</a> ';
$centerPages .= ' <span class="pagNumActive">' . $pn . '</span> ';
$centerPages .= ' <a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $add1 . '">' . $add1 . '</a> ';
}
//这一行设置“LIMIT”范围...我们放置的2个值,用于在查询中从数据库中选择一系列行((现在设置为每页显示5个)))) $ limit ='LIMIT'。($ pn - 1)* $ itemsPerPage。','。$ itemsPerPage;
//现在我们将运行与上面相同的查询,但这次在SQL语法的末尾添加$ limit
// $ sql2是我们将用来为下面的while循环语句提供的资料
$sql2 = mysql_query("the query goes here and added $limit ");
/////////////////////// END Pagination Logic ///////////////////// / ////////////////////////分页显示设置/////////////////
$paginationDisplay = "";
//初始化分页输出变量 //此代码仅在最后一个页面变量不等于1时运行,如果它只有1页我们不需要显示分页链接
if (($lastPage != "1")||($lastPage != "0")){
// This shows the user what page they are on, and the total number of pages
$paginationDisplay .= 'Page <strong>' . $pn . '</strong> of ' . $lastPage. ';
// If we are not on page 1 we can place the Back button
if ($pn != 1) {
$previous = $pn - 1;
$paginationDisplay .= ' <a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $previous . '"> Back</a> ';
}
// Lay in the clickable numbers display here between the Back and Next links
$paginationDisplay .= '<span class="paginationNumbers">' . $centerPages . '</span>';
// If we are not on the very last page we can place the Next button
if ($pn != $lastPage) {
$nextPage = $pn + 1;
$paginationDisplay .= ' <a href="' . $_SERVER['PHP_SELF'] . '?pn=' . $nextPage . '"> Next</a> ';
}
}
//////// END分页显示设置////////////////////
//在此构建输出部分
$outputList = "";
while($row = mysql_fetch_array($sql2)) { /// populate others data if not in the 4 arrays... ]
//////////////////// 这是其他成员数据在while循环中填充的地方......
///所有这一切都有效,但随着人们被添加到4个阵列中的任何一个(当页面刷新时),数据无法正确显示,但行数($ nr)始终是正确的。有时$ nr会说5,但只有3人显示或者它会说2但没人会显示。
这是我的第一个分页,所以错误可能就在那里 如果我的条件逻辑是正确的,或者是否有更好的方法来做我正在尝试的事情,请告诉我。
提前谢谢
史蒂夫
答案 0 :(得分:0)
这是我们所有人一次又一次面临的问题。像这样的大多数问题已经被图书馆类中的某个人解决了。以下是一对应该能够做你想做的事情: