I'm making an events signup module but having a problem advancing to the next page in the admin section.
In the admin section, you have an option to display a certain number per page.
But when you click on the Next link, it takes you back to the main admin page, but the same link takes you to the next page when you are viewing who has already signed up, a non admin module.
Here is the advance to next page code.
Quote:
if(!isset($start)) $start = 0;
$query = "SELECT count(*) as count FROM event";
$result = mysql_query($query);
$row = mysql_fetch_array($result);
$numrows = $row['count'];
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