papaface Posted December 10, 2006 Share Posted December 10, 2006 Hello,Could anyone help me work pagination into this script?[code]<?phprequire("includes/connect.php");$id = $_GET["cat"];$selectcat = mysql_query("select title,author,description,article,category from article where category='".$id."'",$con);while (list($title,$author,$description,$article,$cat) = mysql_fetch_array($selectcat)) { print '<table width="85%" border="1">'; print '<tr><td class="viewfilestitle">Title:</td>'; print '<td class="viewfilesdetails">' . $title . '</td></tr>'; print '<tr><td class="viewfilestitle">Author:</td>'; print '<td class="viewfilesdetails">' . $author . '</td></tr>'; print '<tr><td class="viewfilestitle">Description:</td>'; print '<td class="viewfilesdetails">' . $description. '</td></tr>'; print '<tr><td class="viewfilestitle">Article:</td>'; print '<td class="viewfilesdetails"><pre>' . $article . '</pre></td></tr>'; print '<tr><td class="viewfilestitle">Category:</td>'; print '<td class="viewfilesdetails">' . $cat . '</td></tr>'; print '</table><br>'; }?>[/code]I've looked at tutorials on the internet for pagination but I cant work out how to apply the same methods to the above script. Any help would be greatly appreciated.regards Link to comment https://forums.phpfreaks.com/topic/30148-pagination/ Share on other sites More sharing options...
Psycho Posted December 10, 2006 Share Posted December 10, 2006 Take a look at the pagination tutorials on this site. Link to comment https://forums.phpfreaks.com/topic/30148-pagination/#findComment-138599 Share on other sites More sharing options...
papaface Posted December 10, 2006 Author Share Posted December 10, 2006 I have, that is exactly one of those that I cant figure out how to get it to work with ^^ Link to comment https://forums.phpfreaks.com/topic/30148-pagination/#findComment-138600 Share on other sites More sharing options...
papaface Posted December 10, 2006 Author Share Posted December 10, 2006 Anyone? Link to comment https://forums.phpfreaks.com/topic/30148-pagination/#findComment-138648 Share on other sites More sharing options...
papaface Posted December 10, 2006 Author Share Posted December 10, 2006 This can be closed. I worked it out. Link to comment https://forums.phpfreaks.com/topic/30148-pagination/#findComment-138677 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.