Bootstrap Pagination in PHP and MySQL With dynamic limit

Поділитися
Вставка
  • Опубліковано 10 вер 2024
  • Bootstrap Pagination in PHP and MySQL With dynamic limit
    Get the code from below link:
    github.com/dur...
    Share, Support, Subscribe!!!
    UA-cam: / learnwebcoding
    Facebook: / learnwebcoding
    Blog: dwebcoding.blog...
    GitHub: github.com/dur...
    Connect with Me:
    Linkedin: / durgesh-sahani
    Facebook: / durgeshsahani99
    Instagram: / durgeshsahani_
    Twitter: / durgeshsahani99

КОМЕНТАРІ • 77

  • @gutembergvasconcellos
    @gutembergvasconcellos 4 роки тому +11

    Good tutorial. We can add a little improvement to avoid the next and previous buttons work if we are at the first or last page.
    Adding the classes and a condition to elements we can solve this:

    • @mmrayhanparvez3964
      @mmrayhanparvez3964 4 роки тому

      thanks for the help

    • @learnWebCoding
      @learnWebCoding  4 роки тому

      Thank you! Yes, it's good practice too..

    • @user-wo9mw5js4v
      @user-wo9mw5js4v 8 місяців тому

      the script not working properly and the pagination not change updated to the the other pages the disable at the start work but many problems done in script

  • @MicroDobb
    @MicroDobb 4 роки тому +7

    for infinity next and prev buttons for my projects i used tihs: after this-
    $prev = $page-1;
    $next = $page+1;
    -----add this -------
    if($page == $pages){
    $next = 1;
    $next = ($next);
    }
    if($page == 1){
    $prev = $pages;
    $prev = ($prev);
    }
    it can use for sliders on php.

  • @bagichainfosif5307
    @bagichainfosif5307 5 років тому +4

    Thank you very much sir, best pagination tutorial for PHP Developer

    • @user-wo9mw5js4v
      @user-wo9mw5js4v 8 місяців тому

      the idea is very good but not suitable for me as beginer

  • @samoli02
    @samoli02 Рік тому

    Finally i found what i need for the project, thank you for the video

  • @yasin_osman
    @yasin_osman 4 роки тому +2

    Thanks for the tutorial, i learned pagination from you and used it on my nodejs project. Very clear directions and explanation. Thank you so much

  • @getmyuted
    @getmyuted 5 років тому +5

    not everyday you can see someone make a tutorials with php MySQL

  • @AmolImpal
    @AmolImpal 5 років тому

    मला PHP Dynamic Pagination Topic वर मिळालेला सर्वात सोप्पा आणि बेस्ट व्हिडीओ. असेच व्हिडीओ उपलोड करत राहा सर. धन्यवाद.

  • @suleimanabdullahi3190
    @suleimanabdullahi3190 Рік тому

    Great piece, jQuery tables have a few challenges, this is what i was looking for.

  • @iliganjohncarlo2375
    @iliganjohncarlo2375 3 роки тому +1

    the page number won't show only the previous and next, what will i do?

  • @MarioMaier
    @MarioMaier 5 років тому +2

    Thanks, best pagination tutorial for PHP!

  • @showunmioludotun3538
    @showunmioludotun3538 5 років тому +2

    Nice tutorial. You just rescued me

  • @_danishlaeeq
    @_danishlaeeq 3 роки тому

    Finally got a tutorial with prev and next feature

  • @user-bm2tp2ph2m
    @user-bm2tp2ph2m Рік тому

    Very Good Introduction

  • @jameskillian2979
    @jameskillian2979 2 роки тому

    great tutorial, you really made every thing easy.

  • @dayveed117
    @dayveed117 3 роки тому +4

    Thank you, great video! I tried to implement this approach but there is one small problem that i have run into.
    The $limit variable is not consistent across pagination navigation. In a situation where my query has 50 rows in total and I choose a limit of, for example 5, the page would reload with 5 rows and 10 pages in total. If i choose another page, the limit would is reset into the default value.
    How can i make the $limit value consistent across pages?

    • @behappypro
      @behappypro 2 роки тому

      Facing the same problem. Did you find a solution?

    • @montukhanpathan6130
      @montukhanpathan6130 Рік тому

      Same problem I faced

    • @user-wo9mw5js4v
      @user-wo9mw5js4v 8 місяців тому

      the downloaded script not working properly as we add css files but actually no change

  • @jhackbak8056
    @jhackbak8056 3 роки тому

    Thank you so much this tutorial made my day

  • @ashwanigupta2838
    @ashwanigupta2838 3 роки тому

    Great Explaination.
    It works..

  • @afsalpa31
    @afsalpa31 5 років тому +1

    i want to show only 1 to 5 pages in my gallery. So how can i hide remaining pages. If i use next button then show all pages... Any way this is a good tutorial.. and please help me that problem. thank u sir.

  • @hafizowais7112
    @hafizowais7112 4 роки тому

    All Pagination is working but ($customers = $result->fetch_all(MYSQLI_ASSOC);) generate a Fatal error: Uncaught Error??? how to resolve this?

  • @dhirajpardeshi8598
    @dhirajpardeshi8598 3 роки тому

    I have 200 records i gave limit as 24 but still i can see only 23 in each page could you please help

  • @mr.RAND5584
    @mr.RAND5584 3 роки тому

    How to do it with fetch api, or axios or jquery ajax? I want load all 100 rows once. Then with pagination controlled by javascript. Can we do it with reactjs? I want once refresh only.

  • @mithunmiah7562
    @mithunmiah7562 2 роки тому

    Why you did not add first and last button for go directly first page and last page data

  • @zamiramuradxanova5242
    @zamiramuradxanova5242 Рік тому

    thank you so much

  • @neoaq4408
    @neoaq4408 3 роки тому +1

    I can't thank you enough

  • @user-wo9mw5js4v
    @user-wo9mw5js4v 8 місяців тому

    the previous button must be disable in beginning and the last page must disable the next button this video is very important but we need an Arabic video if y can ???

  • @abbasmosavi2652
    @abbasmosavi2652 3 роки тому +1

    hi sir
    i have a question
    how can i limit display pagination number like this: < 1 2 3 4 5 ....... 56 >
    showing all number of page not good
    how can i decrease number?
    please help me
    tnx

  • @user-mm6bm6mc9m
    @user-mm6bm6mc9m 10 місяців тому

    Your making this video, but your not explaining where did you get the $_GET[''page'[

  • @sanketsaitawdekar4440
    @sanketsaitawdekar4440 4 роки тому

    when i am on page 1 and if i press previous it will go on page=0 and give error. and also if i am on page 20 and if i press next it will go on page=21 which does not exists and it will show no records. i don't want to happen anything when i press previous on 1 and next on 21 but it is happening. how to solve this?

  • @ktechsols
    @ktechsols 4 роки тому

    thanks sir , this is a good learning video

  • @user-rx7fm3si8d
    @user-rx7fm3si8d Рік тому

    Thank you

  • @Rameshkumar-ef9ws
    @Rameshkumar-ef9ws 4 роки тому

    hello sir problem occur when i click limit number of row successful showing but when i click on next or previous button it show static limit
    how to fix dropdown limit on next and previous button

    • @sankarapandiyan2102
      @sankarapandiyan2102 3 роки тому

      Yes i am also having the same problem please .. say how to resolve it

  • @blackcoder3638
    @blackcoder3638 5 років тому

    Brother, I want to create a pagination with 20 limit per page
    why i will do ?

  • @suhakim5072
    @suhakim5072 3 роки тому

    Thank you,sir

  • @dhamo635
    @dhamo635 3 роки тому

    Thanks for Source! (code)

  • @bstechideas2173
    @bstechideas2173 2 роки тому

    Thank you so much!

  • @eldhokuriakose
    @eldhokuriakose 5 років тому

    Sir you haven't given the href="../library/css/bootstrap.min.css" and src="../library/js/jquery-3.2.1.min.js" in GitHub

    • @learnWebCoding
      @learnWebCoding  5 років тому

      You can download these files from there official website.

  • @OpinionOutposts
    @OpinionOutposts 3 роки тому

    I want drag and drop html edit by php and my sql like wix ,how can i do this? please sir make video on this topic

  • @prithwirajdutta3827
    @prithwirajdutta3827 4 роки тому

    Thank you.

  • @fjb46
    @fjb46 5 років тому

    HI, I have a problem displaying names with a special character such as: ç , é, è, ö, '
    is there a solution to this problem? Thanks anyway for your instructions....... Paco

    • @ericksonmwendwa721
      @ericksonmwendwa721 5 років тому +1

      Add this to your php code 'mysqli_set_charset($db, "utf8");'
      *change $db to your mysqli_connect variable

    • @huangyitong8569
      @huangyitong8569 5 років тому

      @@ericksonmwendwa721 Thanks! You saved my life:)

  • @bnlovesyou2241
    @bnlovesyou2241 Рік тому

    i think you should put a ... instead of limit

  • @THEHISTORY_TV
    @THEHISTORY_TV 5 років тому

    Nice tutorial, add search for that video 👍👍👍👍

    • @learnWebCoding
      @learnWebCoding  5 років тому

      Thank you!

    • @francoisbeerten920
      @francoisbeerten920 5 років тому

      @@learnWebCoding :As Rolly wrote, would it be possible to enter a search assignment? Since I have a database of more than 9000 records and I don't show every field of every record in this bootstrap, would it be interesting to be able to click on a record - e.g. the unique id number - to see a detail of this particular record, but with all available 9 fields, including the 2 fields that contain a picture?

  • @ckgringoblogger9170
    @ckgringoblogger9170 4 роки тому

    Hi, thanks for the amazing tuto, can i ask you: when im on page-1 and click previous i go to page-0 but im getting this error: Fatal error: Call to a member function execute() on boolean in, i may doing something wrong? Thanks.

    • @Alice-vi5cl
      @Alice-vi5cl 4 роки тому

      Hey you are doing nothing wrong, you can try an if, like:
      just before the a href..

  • @devesh21
    @devesh21 4 роки тому

    How to show fixed number of pages and update on next only?

  • @hajargaming05
    @hajargaming05 4 роки тому

    Thanks..

  • @justapasserby445
    @justapasserby445 3 роки тому

    its so good but I need a Laravel 8 code....

  • @jeremymarshall5207
    @jeremymarshall5207 3 роки тому

    I used this to prevent infinite Previous and Next clicks
    $previous = ($page == 1) ? 1 : $page - 1;
    $next = ($page == $pages) ? $pages : $page + 1;

  • @lipinnambiar
    @lipinnambiar 5 років тому

    How to hide the next and previous button if no further pages available?

    • @ericksonmwendwa721
      @ericksonmwendwa721 5 років тому

      ul.pagination li:first-child, ul.pagination li:last-child{display: none;} ;change 'ul' to 'ol' if you are using orderd lists, which you should😊😊😊

    • @sanketsaitawdekar4440
      @sanketsaitawdekar4440 4 роки тому

      @@ericksonmwendwa721 your answer is non understandable.

  • @brahimnkhili7057
    @brahimnkhili7057 5 років тому

    it's not working, you gave all details about code

  • @yuu_fighter3768
    @yuu_fighter3768 3 роки тому

    then file database? where?

  • @zaib5263
    @zaib5263 4 роки тому

    13:28 Is it possible without jquery only with php?

    • @ashkanahmadi
      @ashkanahmadi 3 роки тому

      You can do that with vanilla js

  • @ionut1234567891011
    @ionut1234567891011 5 років тому

    hello, great tutorial, can you make a tutorial with shopping cart php mysql and ajax? Please SIR! THANK YOU!

    • @learnWebCoding
      @learnWebCoding  5 років тому

      Already have here: Shopping cart with payment gateway integration in php and mysql: ua-cam.com/play/PLCakfctNSHkFHI-KgsMXbQUNl6zg0fv8I.html

    • @ionut1234567891011
      @ionut1234567891011 5 років тому

      @@learnWebCoding that tutorial i think it`s a little harder for beginners you are using OOP with classes, i mean something php,mysql,ajax more simplified for beginners.THANK YOU!

  • @Rameshkumar-ef9ws
    @Rameshkumar-ef9ws 4 роки тому

    i copy yr file show sane problems

  • @jamlookstech4948
    @jamlookstech4948 4 роки тому

    i want to show only 1 to 5 pages in my gallery. So how can i hide remaining pages. If i use next button then show all pages... Any way this is a good tutorial.. and please help me that problem. thank u sir.