Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
Donovan
Client



Joined: Oct 07, 2003
Posts: 735
Location: Ohio

PostPosted: Wed Jan 17, 2007 1:42 pm Reply with quote

I followed an example on the web and came up with a pretty easy one to follow.

The problem is with the links at the bottom for:

FIRST PREV pageno NEXT LAST

The hyper link <a href='{$_SERVER['PHP_SELF']} send me to my main admin ACP page in Nuke. It does not send me to the next page in the form.

The page that this pagination is effecting is /modules/Campaign/admin/MoveLogs.php

Here is the code at the bottom of my MoveLogs.php page.


Code:
if ($pageno == 1) {

   echo " FIRST PREV ";
} else {
   echo " <a href='{$_SERVER['PHP_SELF']}?pageno=1'>FIRST</a> ";
   $prevpage = $pageno-1;
   echo " <a href='{$_SERVER['PHP_SELF']}?pageno=$prevpage'>PREV</a> ";
} // if
echo " ( Page $pageno of $lastpage ) ";
if ($pageno == $lastpage) {
   echo " NEXT LAST ";
} else {
   $nextpage = $pageno+1;
   echo " <a href='{$_SERVER['PHP_SELF']}?pageno=$nextpage'>NEXT</a> ";
   echo " <a href='{$_SERVER['PHP_SELF']}?pageno=$lastpage'>LAST</a> ";
}
 
View user's profile Send private message Visit poster's website ICQ Number
Captain_Computer
Hangin' Around



Joined: May 30, 2004
Posts: 46

PostPosted: Thu Jan 18, 2007 4:47 pm Reply with quote

I had the same problem. You are calling the file MoveLogs.php thru the index page in /modules/Campaign/admin/ as a op or action so the page generation is looking at the main index.php. You have to call your MoveLogs.php like so:
http://www.YOUR_SITE.com/modules.php?name=Campaign&file=/admin/MoveLogs

Or create another module and make MoveLogs.php the index.php

_________________
Captain Computer Said It !!!! 
View user's profile Send private message Visit poster's website
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©