xfezz Posted October 26, 2006 Share Posted October 26, 2006 Right now this is how my pagination looks like:[img]http://img.photobucket.com/albums/v487/xfezz/now.jpg[/img]I would like it to look like this:[img]http://img.photobucket.com/albums/v487/xfezz/would_like.jpg[/img]having the first back next and last links on the right of the page numbers. I would like to have these two groups of links in two separate div tags for easy styling with css.here is my code[code]// Build First page Link if not on the first pageif ($page != 1) { echo "<a href=\"".$_SERVER['PHP_SELF']."?page=1\">FIRST </a> ";}// Build Previous Linkif($page > 1){ $prev = ($page - 1); echo "<a href=\"".$_SERVER['PHP_SELF']."?page=$prev\"><< Back</a> ";}for($i = 1; $i <= $total_pages; $i++){ if(($page) == $i){ echo "[<b>"."$i"."</b>] "; } else { echo "<a href=\"".$_SERVER['PHP_SELF']."?page=$i\">$i</a> "; }}// Build Next Linkif($page < $total_pages){ $next = ($page + 1); echo "<a href=\"".$_SERVER['PHP_SELF']."?page=$next\">Next >></a>";}// Build last page link if not on last pageif ($page != $total_pages) { echo "<a href=\"".$_SERVER['PHP_SELF']."?page=$total_pages\"> LAST</a> ";}[/code]how would I go about doing this? Link to comment https://forums.phpfreaks.com/topic/25127-help-with-formatting-generated-html-code/ Share on other sites More sharing options...
mb81 Posted October 26, 2006 Share Posted October 26, 2006 Just change the order of the different items using copy and paste. As far as the positioning of the elements, you would need to use some tables or some absolute positioning to position the numbers in the middle and the first, previous, next, last on the right. Link to comment https://forums.phpfreaks.com/topic/25127-help-with-formatting-generated-html-code/#findComment-114594 Share on other sites More sharing options...
xfezz Posted October 26, 2006 Author Share Posted October 26, 2006 ok after many hours of messing around and trying different variations i got it to do what id like it to do. i had to wrap the if block with a div tag. i was trying to do it inside of the if statement. so its something like this[code]echo "<div class=\"page_numbers\">";for($i = 1; $i <= $total_pages; $i++){ if(($page) == $i){ echo "[<b>"."$i"."</b>] "; } else { echo "<a href=\"".$_SERVER['PHP_SELF']."?page=$i\">$i </a>"; }}echo "</div>"."\n";[/code]thanks for your help Link to comment https://forums.phpfreaks.com/topic/25127-help-with-formatting-generated-html-code/#findComment-114634 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.