Bootstrap Pagination in PHP and MySQL With dynamic limit

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024
  • Bootstrap Pagination in PHP and MySQL With dynamic limit
    Get the code from below link:
    github.com/dur...
    Share, Support, Subscribe!!!
    RUclips: / 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: ruclips.net/p/PLCakfctNSHkFHI-KgsMXbQUNl6zg0fv8I

    • @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.