TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
 
 
LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
Old 06-01-2009, 04:56 PM   #1 (permalink)
The Wanderer
 
Join Date: Oct 2008
Posts: 14
Thanks: 0
Lou_Gato is on a distinguished road
Default I dont understand this..

it was working, we switched servers and now its not


PHP Code:
<?php

//This checks to see if there is a page number. If not, it will set it to page 1
if (!(isset($pagenum)))
{
$pagenum 1;
}

//Here we count the number of results
//Edit $data to be your query
$data mysql_query("SELECT * FROM tbl_videos WHERE gallery='myvid'") or die(mysql_error());
$rows mysql_num_rows($data);

//This is the number of results displayed per page
$page_rows 21;

//This tells us the page number of our last page
$last ceil($rows/$page_rows);

//this makes sure the page number isn't below one, or more than our maximum pages
if ($pagenum 1)
{
$pagenum 1;
}
elseif (
$pagenum $last)
{
$pagenum $last;
}

//This sets the range to display in our query
$max 'LIMIT ' .($pagenum 1) * $page_rows .',' .$page_rows


//This is your query again, the same one... the only difference is we add $max into it
$data_p mysql_query("SELECT * FROM tbl_videos WHERE gallery = 'myvid' ORDER BY title ASC $max") or die(mysql_error());
$i 0;
//This is where you display your query results
while($info mysql_fetch_array$data_p ))
{
         
?>  

          <?php  ?>


  <?php        
echo "<p>";

// This shows the user what page they are on, and the total number of pages
echo "<div align=\"left\" style=\"width:35%; float:left;\"> pg $pagenum of $last</div>";
echo 
"<div align=\"right\" style=\"width:55%; float:left;\">";
// First we check if we are on page one. If we are then we don't need a link to the previous page or the first page so we do nothing. If we aren't then we generate links to the first page, and to the previous page.
if ($pagenum == 1)
{
}
else
{
echo 
" <a href='{$_SERVER['PHP_SELF']}?pagenum=1'> <<-First</a> ";
echo 
" ";
$previous $pagenum-1;
echo 
" <a href='{$_SERVER['PHP_SELF']}?pagenum=$previous'> <-Previous</a> ";
//just a spacer
echo " ---- ";
}



//This does the same as above, only checking if we are on the last page, and then generating the Next and Last links
if ($pagenum == $last)
{
}
else {
$next $pagenum+1;
echo 
" <a href='{$_SERVER['PHP_SELF']}?pagenum=$next'>Next -></a> ";
echo 
" - ";
echo 
" <a href='{$_SERVER['PHP_SELF']}?pagenum=$last'>Last ->></a> ";
}
echo 
"</div>";
?>
am I doing something wrong?
Lou_Gato is offline  
Reply With Quote
 



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 06:37 AM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design