/    Sign up×
Community /Pin to ProfileBookmark

Pagination – First page is great, next pages are blank

Hello,

I am very close to getting this pagination to work. The first page is fine, but then when I click on the hyperlinks for the next pages, the results are blank. After reading other threads where people have had the same problem, it appears that it is a result of a variable not being passed through to the next pages.

However, I have the variable “find” as both a session variable and an addition to the URL of the next pages, and the next pages are still blank. Any ideas why it might not be working? Is “find” the right variable for me to be passing through to the next pages?

Thanks,

John

[CODE]<?php
session_start();
$find = strip_tags($find);
$find = trim ($find);
$find = strtolower($find);
$_SESSION[‘find’] = $find;

?>

<?
//This is only displayed if they have submitted the form
if ($searching ==”yes”)
{

//If they did not enter a search term we give them an error
if ($find == “”)
{
echo “<p>You forgot to enter a search term”;
exit;
unset($_SESSION[‘find’]);

}

// Otherwise we connect to our Database
mysql_connect(“mysqlv3”, “username”, “password”) or die(mysql_error());
mysql_select_db(“sand2”) or die(mysql_error());

// We preform a bit of filtering

$find = strip_tags($find);
$find = trim ($find);
$find = strtolower($find);

$result=mysql_query(“SHOW TABLES FROM sand2 LIKE ‘%$find%'”)
or die(mysql_error());

if(mysql_num_rows($result)>0){
while($table=mysql_fetch_row($result)){

$presult = mysql_query(“SELECT COUNT(*) FROM `$table[0]`”) or die(mysql_error());

$rr = mysql_fetch_row($presult);
$numrows = $rr[0];
$rowsperpage = 20;
$totalpages = ceil($numrows / $rowsperpage);

// get the current page or set a default
if (isset($_GET[‘currentpage’]) && is_numeric($_GET[‘currentpage’])) {
// cast var as int
$currentpage = (int) $_GET[‘currentpage’];
} else {
// default page num
$currentpage = 1;
} // end if

// if current page is greater than total pages…
if ($currentpage > $totalpages) {
// set current page to last page
$currentpage = $totalpages;
} // end if
// if current page is less than first page…
if ($currentpage < 1) {
// set current page to first page
$currentpage = 1;
} // end if

// the offset of the list, based on current page
$offset = ($currentpage – 1) * $rowsperpage;

print “<p class=”topic”>$table[0]</p>n”;
$r=mysql_query(“SELECT * , votes_up – votes_down AS effective_vote FROM `$table[0]` ORDER BY effective_vote DESC LIMIT $offset, $rowsperpage”);

print “<table class=”navbar”>n”;
while($row=mysql_fetch_array($r)){

$effective_vote = $row[‘votes_up’] – $row[‘votes_down’];

print “<tr>”;

print “<td>”.'<a href=”http://’.$row[‘site’].'” class=”links2″>’.$row[‘site’].'</a>’.”</td>”;
print “<td class=’votes’>”.'<span class=”votes_count” id=”votes_count’.$row[‘id’].'”>’.number_format($effective_vote).'</span>’.”</td>”;
print “<td class=’ballot’>”.'<span class=”button” id=”button’.$row[‘id’].'”>’.'<a href=”javascript:;” class=”cell1″ id=”‘.$row[‘id’].'”>’.Vote.'</a>’.'</span>’.”</td>”;
}
print “</tr>n”;
}
print “</table>n”;

$range = 3;

/****** build the pagination links ******/
// range of num links to show

// if not on page 1, don’t show back links
if ($currentpage > 1) {
// show << link to go back to page 1
echo ” <a href='{$_SERVER[‘PHP_SELF’]}?currentpage=1&find={$find}’><<</a> “;
// get previous page num
$prevpage = $currentpage – 1;
// show < link to go back to 1 page
echo ” <a href='{$_SERVER[‘PHP_SELF’]}?currentpage=$prevpage&find={$find}’><</a> “;
} // end if

// loop to show links to range of pages around current page
for ($x = ($currentpage – $range); $x < (($currentpage + $range) + 1); $x++) {
// if it’s a valid page number…
if (($x > 0) && ($x <= $totalpages)) {
// if we’re on current page…
if ($x == $currentpage) {
// ‘highlight’ it but don’t make a link
echo ” [<b>$x</b>] “;
// if not current page…
} else {
// make it a link
echo ” <a href='{$_SERVER[‘PHP_SELF’]}?currentpage=$x&find={$find}’>$x</a> “;
} // end else
} // end if
} // end for

// if not on last page, show forward and last page links
if ($currentpage != $totalpages) {
// get next page
$nextpage = $currentpage + 1;
// echo forward link for next page
echo ” <a href='{$_SERVER[‘PHP_SELF’]}?currentpage=$nextpage&find={$find}’>></a> “;
// echo forward link for lastpage
echo ” <a href='{$_SERVER[‘PHP_SELF’]}?currentpage=$totalpages&find={$find}’>>></a> “;
} // end if
/****** end build pagination links ******/

}

else{
print “None found”;
}

//This counts the number or results – and if there wasn’t any it gives them a little message explaining that
$anymatches=mysql_num_rows($result);
if ($anymatches == 0)
{
echo “Sorry, but we can not find an entry to match your query<br><br>”;
unset($_SESSION[‘find’]);

}

}
?>[/CODE]

to post a comment
PHP

0Be the first to comment 😎

×

Success!

Help @ArizonaJohn spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...