Thanks for reading in advance. I'm a newbie here and I have some issues about my pagination script.Most of the tutorials I found on the web are basically queries that are predefined.I'm currently using this script which is from Michael P. Bourque (michael@mbourque.com).so this is the script.
PHP Code:
<?php
$Host = "";
$User = "";
$Password = "";
$DBName = ""; // Database name
$TableName = ""; // Name of table to display
$Pagesize = "10";
$rateID = "$_POST[select]";
// Do not edit below this line
//echo $rateID; just to test whether it holds a value
$Link = mysql_pconnect ($Host, $User, $Password);
the problem is I kept getting error or blank result whenever I click next page and worst when I navigate to previous the page went blank. Really appreciate the help. Thanks in advance.
Last edited by Christian; 03-19-06 at 02:51 PM.
Reason: Please use [PHP]php[/PHP] when posting php code