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 1070317
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T20:32:37+00:00 2026-05-16T20:32:37+00:00

I’m using PHP to create a pagination for a table. I’m using the following

  • 0

I’m using PHP to create a pagination for a table.
I’m using the following code to create the pagination link

<a class='page-numbers' href='$href&pagenum=$i'>$i</a>

With $href

$href = $_SERVER['REQUEST_URI'];

It works well, however, it messes with the address bar, adding each time a new pagenum parameter.
So it becomes pagenum=1&pagenum=3&pagenum=4….

How to improve that?

  • 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-05-16T20:32:38+00:00Added an answer on May 16, 2026 at 8:32 pm

    How about this? Went and tested, to be sure 🙂

    <?php
        $new_get = $_GET; // clone the GET array
        $new_get['pagenum'] = $i; // change the relevant parameter
        $new_get_string = http_build_query($new_get); // create the foo=bar&bar=baz string
    ?>
    <a class="page-numbers" href="?<?php echo $new_get_string; ?>">
        <?php echo $i ?>
    </a>
    

    Also, note that the whole $href bit is unnecessary. If you start your href with ?, the browser will apply the query string to the current path.

    I bet you’re going to be looping, though, so here’s a version optimized for producing 10,000 page number links. My benchmarks put it as being ever so slightly faster at large numbers of links, since you’re just doing string concatenation instead of a full HTTP query build, but it might not be enough to be worth worrying about. The difference is only really significant when there five or six GET parameters, but, when there are, this strategy completes in about half the time on my machine.

    <?php
        $pageless_get = $_GET; // clone the GET array
        unset($pageless_get['pagenum']); // remove the pagenum parameter
        $pageless_get_string = http_build_query($pageless_get); // create the foo=bar&bar=baz string
        for($i = 0; $i < 10000; $i++):
            // append the pagenum param to the query string
            $page_param = "pagenum=$i";
            if($pageless_get_string) {
                $pageful_get_string = "$pageless_get_string&$page_param";
            } else {
                $pageful_get_string = $page_param;
            }
    ?>
        <a class="page-numbers" href="?<?php echo $pageful_get_string; ?>">
            <?php echo $i ?>
        </a>
    <?php endfor ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

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.