pixeltrace Posted July 24, 2007 Share Posted July 24, 2007 hi, is there any pagination php script available online which also has an alphabetical buttons? thanks! Link to comment https://forums.phpfreaks.com/topic/61545-pagination-with-alphabetical-links/ Share on other sites More sharing options...
Psycho Posted July 24, 2007 Share Posted July 24, 2007 Just take the script from this tutorial: http://www.phpfreaks.com/tutorials/43/0.php and modify for your particular data and tables. Then change this if(empty($page)){ $page = 1; } to this if (isset($_GET )) { if (is_numeric($_GET )) { $page = $_GET ; } else { $query = "SELECT count(*) FROM table WHERE field >= '".substr($_GET[letter], 0, 1)."'"; $result = mysql_query($query); $page = ceil((mysql_num_rows($result) / $limit)); } } else { $page = 1; } If all is working you should be able to create a link to go to the first page of a particular letter using a link like so: echo "<a href=\"$_SERVER['PHP_SELF']&page=a\">A</a> "); Link to comment https://forums.phpfreaks.com/topic/61545-pagination-with-alphabetical-links/#findComment-306327 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.