I'm try to a list of the pages of my search the code bleow gives my the number of total pages but I can't get it to list them (123456) any ideas?
$dvd_count_string2 = "SELECT count(*) FROM " . $dvd_search_db . " " . $dvd_search_string1;
$dvd_connect_string2 = @mysql_connect($dvd_mysql_host, $dvd_mysql_username, $dvd_mysql_password) or $db_error = 1;
$dvd_count_result2 = mysql_db_query($dvd_mysql_db, $dvd_count_string2);
while ($dvd_tl = @mysql_fetch_array($dvd_count_result2)){
echo $dvd_tl[0];
}