Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8049725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T06:51:47+00:00 2026-06-05T06:51:47+00:00

Need a little help with this script. It’s working but I’d love a way

  • 0

Need a little help with this script. It’s working but I’d love a way to simplify it a little.

At the moment I have ‘ if($currentPageIndex == 4) ‘ I have to manually update the ‘4’ every time I add or remove an item from the projectlist array. What I need is someway of saying ‘if($currentPageIndex == the last item of the array)’ That way I can add / remove items without worrying about updating the number as well.

How should I go about this? I’ve read up on various options and been trying things out with no luck so far.

Also if possible would the solution be usable on the Prev & Next links as well?
So instead of the +4 and -4 it jumps to the first and last item respectively.

Any help much appreciated.

Working demo here: http://www.ok-hybrid.com/projects/monkey/
Code here :

<?php

$currentPath = explode('?', $_SERVER['REQUEST_URI']); //make sure we don't count any GET variables!
$currentPath = $currentPath[0]; //grab just the path
$projectlist = array(
        '/projects/monkey/',
        '/projects/tiger/',
        '/projects/parrot/',
        '/projects/banana/',
        '/projects/aeroplane/',
);



if(! in_array($currentPath, $projectlist) ) {
    die('Not a valid page!'); //they didn't access a page in our master list, handle error here.
}

$currentPageIndex = array_search($currentPath, $projectlist);

if($currentPageIndex > 0) { 
    $prevlink = '<a href="'.$projectlist[$currentPageIndex-1].'">Prev</a>';
} else {
    $prevlink = '<a href="'.$projectlist[$currentPageIndex+4].'">Prev</a>';
    }

if($currentPageIndex == 4) { 
    $nextlink = '<a href="'.$projectlist[$currentPageIndex-4].'">Next</a>';
} else {
    $nextlink = '<a href="'.$projectlist[$currentPageIndex+1].'">Next</a>';
}

?>



<ul id="sub-nav">

<li>
<?php
print_r($prevlink);
?>
</li>

<li>
<?php
print_r($nextlink);
?>
</li>

</ul>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T06:51:48+00:00Added an answer on June 5, 2026 at 6:51 am

    use

    sizeof($projectList) - 1
    

    to get the desired number

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know I'm close to figuring this out but need a little help. What
I need a little help on this subject. I have a Web application written
I need a little help getting this script doing what I want it to.
I need a little help with this, I am trying to insert some data
I need a little help with this.. I need to take only the numbers
Thanks for viewing this. I need a little bit of help for this project
I really desperately need help with this issue and am more than a little
Need a little help with a SQL / ActiveRecord query. Let's say I have
I need a little help with a script i modified. I've created a submenu
Hi all I have to do a little script in Python. In this script

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.