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

  • Home
  • SEARCH
  • 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 6090349
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:12:15+00:00 2026-05-23T12:12:15+00:00

I am looking for a php json pagination method/class. Here is my code. How

  • 0

I am looking for a php json pagination method/class. Here is my code. How to make each 2 json data as a group, for a pagination?

$body = file_get_contents("out_file.txt");
$json = json_decode($body,true);
foreach($json as $data){
    echo $data['name'].' '; 
}

out_file.txt

[
    {"name":"text1","num":"1"},
    {"name":"text2","num":"2"},
    {"name":"text3","num":"3"},
    {"name":"text4","num":"4"},
    {"name":"text5","num":"5"},
    {"name":"text6","num":"6"}
]

I need divide data like this:

page1

text1
text2

page2

text3
text4

page3

text5
text6

  • 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-23T12:12:15+00:00Added an answer on May 23, 2026 at 12:12 pm

    JSON data is not a “display” medium… it’s a data transfer format. How you do pageination of the data within the JSON body is up to you, but that’s true of ANY data structure, not just JSON. Given that your sample JSON structure is an array, you’d simply do some array indexing with your “page” offsets:

    $page = 2;
    $items_per_page = 2;
    
    echo $json[$page * $items_per_page]['name'] // $json[4] -> text5
    echo $json[$page * $items_per_page + 1]['name'] // $json[5] -> text6
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking for a PHP library/function/class which can create Identicon s.
I'm looking for a PHP (with MYSQL) nested sets class with all needed functions.
I am looking at some PHP code where there are translation strings. For French
Ok, maybe I'm missing something here but I'm looking at various PHP hosting options
I am looking for someone who likes PHP, Javascript (JSON), REST and MySQL to
i need to make charts (pie and bar) and working with php data. the
Not really looking for code examples here, just concepts. I have three sections on
I'm looking for a way to mimic php's json_encode's behavior from node js. Here's
I'm looking for an array, preferably php or json, that maps file extensions to
I am looking at trying to cache variables in PHP from a JSON file.

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.