How make two pages of products in PHP? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How make two pages of products in PHP?

Hi, I want to ask how do I set up in PHP to show up in my store on one page of 10 products and on the next page of another 10. I have products in the database.

8th Apr 2018, 12:06 PM
Matúš Jurko
Matúš Jurko - avatar
3 Answers
+ 6
I made similar answers already but I can't find it so here it is again. I'm going to use sololearn as example https://www.sololearn.com/Discuss?page=2 It's that "page" parameter that is important. You want 10 products per page $products = 10; $page = $_GET["page"]; //Page number from url Our stating index would be products per page multiplied with page number. $index = 0; if($page > 1) { $index = $products * ($page - 1); //?page=2 index would be 10 and so on } "SELECT * FROM products LIMIT $products OFFSET $index" On ?page=2 that query will select 10 products from your database starting on record 11 ?page=1 1 - 10 ?page=2 11 - 20 ?page=3 21 - 30 and so on Fetch your rows and display them
8th Apr 2018, 12:41 PM
Toni Isotalo
Toni Isotalo - avatar
+ 2
Use a framework, most will do it for you. If it's for educational purposes then what Toni Isotalo said.
8th Apr 2018, 1:03 PM
Emma
+ 2
Thanks Toni Isotalo.
8th Apr 2018, 2:13 PM
Matúš Jurko
Matúš Jurko - avatar