AdRock Posted August 12, 2006 Share Posted August 12, 2006 I have a pagination script which displays 1 news article per page and it works exactly how i want it toI also hae links to the 5 newest articles so a viewer can click on the link and go straight to that page.The problem is that all the links go straight to the first page. i.e. if the user clicks on the third link they should be taken to the third newest post but instead they get directed to the newest post.Is there a way I can get around this?Pagination code:[code]<? //REMEMBER TO CONNECT TO DATABASE! include_once("includes/connection.php");$t = mysql_query("SELECT * FROM `news`"); if(!$t) die(mysql_error()); $a = mysql_fetch_object($t); $total_items = mysql_num_rows($t); $limit = $_GET['limit']; $type = $_GET['type']; $page = $_GET['pagenum']; //set default if: $limit is empty, non numerical, less than 1, greater than 50 if((!$limit) || (is_numeric($limit) == false) || ($limit < 2) || ($limit > 50)) { $limit = 1; //default } //set default if: $page is empty, non numerical, less than zero, greater than total available if((!$page) || (is_numeric($page) == false) || ($page < 0) || ($page > $total_items)) { $page = 1; //default } //calcuate total pages $total_pages = ceil($total_items / $limit); $set_limit = $page * $limit - ($limit); //query: **EDIT TO YOUR TABLE NAME, ECT. $q = mysql_query("SELECT id,title,content, DATE_FORMAT(time, '%W %D %M %Y') as date, photo FROM news ORDER BY time DESC LIMIT $set_limit, $limit"); if(!$q) die(mysql_error()); $err = mysql_num_rows($q); if($err == 0) die("No matches met your criteria."); $numofrows = mysql_num_rows($q);//Results per page: **EDIT LINK PATH** echo(" <a href=?page=news&limit=10&pagenum=1></a> <a href=?page=news&limit=25&pagenum=1></a> <a href=?page=news&limit=50&pagenum=1></a>"); //show data matching query: while($code = mysql_fetch_array($q)) { echo "<div id=\"right\"><h3>".$code['title']."</h3><i>Date added: ".$code['date']."</i><p class=\"style3\"><img src=http://www.project-sw.co.uk/jack/images/".$code['photo'].">".nl2br($code['content'])."</p></div>\n";} $id = urlencode($id); //makes browser friendly //prev. page: **EDIT LINK PATH** $prev_page = $page - 1; if($prev_page >= 1) { echo("<b><<</b> <a href=?page=news&limit=$limit&pagenum=$prev_page><b>Prev.</b></a>"); } //Display middle pages: **EDIT LINK PATH** for($a = 1; $a <= $total_pages; $a++) { if($a == $page) { echo("<b> $a</b> | "); //no link } else { echo(" <a href=?page=news&limit=$limit&pagenum=$a> $a </a> | "); } } //next page: **EDIT THIS LINK PATH** $next_page = $page + 1; if($next_page <= $total_pages) { echo("<a href=?page=news&limit=$limit&pagenum=$next_page><b>Next</b></a> > >"); } //all done ?>[/code]Here is how i display the 5 newest articles:include_once("includes/connection.php");$q = mysql_query("SELECT id, title FROM news ORDER BY time DESC LIMIT 5"); echo "<OL id=\"blah\">"; while($articles = mysql_fetch_object($q)) { echo "<LI><a class=\"one\" href=\"http://www.mysite.com/index.php?page=news&id=".$articles->id."\">".$articles->title."</a></LI>"; } echo"</OL>";?> Link to comment https://forums.phpfreaks.com/topic/17305-how-to-link-to-a-page-within-pagination/ Share on other sites More sharing options...
raza.shahzad Posted August 12, 2006 Share Posted August 12, 2006 are $articles->id and $articles->title giving correct display?echo $articles->*; them for test purpose Link to comment https://forums.phpfreaks.com/topic/17305-how-to-link-to-a-page-within-pagination/#findComment-73518 Share on other sites More sharing options...
AdRock Posted August 12, 2006 Author Share Posted August 12, 2006 yes they are....just when i click each of them they direct to the first page of the pagaination Link to comment https://forums.phpfreaks.com/topic/17305-how-to-link-to-a-page-within-pagination/#findComment-73635 Share on other sites More sharing options...
AdRock Posted August 12, 2006 Author Share Posted August 12, 2006 I have made some changes to how the article are listed and it sort of works include_once("includes/connection.php");$q = mysql_query("SELECT id, title FROM news ORDER BY id DESC LIMIT 5"); echo "<OL id=\"blah\">"; while($articles = mysql_fetch_object($q)) { echo "<LI><a class=\"one\" href=\"http://www.mysite.com/index.php?page=news&limit=1&pagenum=".$articles->id."\">".$articles->title."</a></LI>"; } echo"</OL>";?>Now what it does is limit it to one article per page which is right but when you click on the first link which should be the last article insterted it goes to the first article insterted in the pagination whcih would be the last page. I am trying to get it to go to the first page. First link should go to the first page, second link to the second page and so onHow do I do this? Link to comment https://forums.phpfreaks.com/topic/17305-how-to-link-to-a-page-within-pagination/#findComment-73680 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.