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
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
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
Old 06-01-2009, 05:11 PM   #2 (permalink)
The Gregarious
 
allworknoplay's Avatar
 
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
allworknoplay is on a distinguished road
Default

Ok, when you say it's not, can you provide more info on why it's not working like any errors or what you are expecting to see?
allworknoplay is offline  
Reply With Quote
Old 06-01-2009, 05:21 PM   #3 (permalink)
The Wanderer
 
Join Date: Oct 2008
Posts: 14
Thanks: 0
Lou_Gato is on a distinguished road
Default

well it does display the 1st page, but when I click on next page it reloads the same content. it won't load the new content, just reload the first page over and over again.

does that make sense?
Lou_Gato is offline  
Reply With Quote
Old 06-01-2009, 05:55 PM   #4 (permalink)
The Contributor
 
Sakakuchi's Avatar
 
Join Date: Feb 2009
Posts: 64
Thanks: 1
Sakakuchi is on a distinguished road
Default

Take a look at the source in your browser - wheter the links are generated correctly. I'd say the problem is there. I would think you get an error with $_SERVER['PHP_SELF']. Check wheter that variable gives out the correct content
Sakakuchi is offline  
Reply With Quote
Old 06-01-2009, 06:08 PM   #5 (permalink)
The Wanderer
 
Join Date: Oct 2008
Posts: 14
Thanks: 0
Lou_Gato is on a distinguished road
Default

no $_SERVER['PHP_SELF'] is working fine.. anyone else
Lou_Gato is offline  
Reply With Quote
Old 06-01-2009, 07:00 PM   #6 (permalink)
The Frequenter
 
ReSpawN's Avatar
 
Join Date: Nov 2007
Location: Netherlands
Posts: 460
Thanks: 49
ReSpawN is on a distinguished road
Default

If this is a way of pagination, I suggest your dump it into an array and use array_slice. Look it up on php.net ;)

Otherwise, this should be working just fine. If this is a way of using SMARTY (hence the {$_SERVER['PHP_SELF']} tags (see { })) you should consider just using
PHP Code:
echo '<div>a text ' $fromPHP ' here</div>'
__________________
"Life is a bitch, take that bitch on a ride"
Send a message via MSN to ReSpawN
ReSpawN is offline  
Reply With Quote
Reply



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 09:53 AM.

 
     

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