Creating a Simple Pagination Using PHP and MySQL

Поделиться
HTML-код
  • Опубликовано: 12 янв 2025

Комментарии • 57

  • @NoelReinhardt
    @NoelReinhardt Год назад +2

    you explain this in a very easy understanding language! love this man! really helpful for my project

  • @HakanGalip
    @HakanGalip 5 месяцев назад

    Hey Digital Fox your video helps me solving a problem that i can not solve for a year... Thanks a lot and it is very good that teachers gives their inputs to others...

  • @UrošSpasić-i3p
    @UrošSpasić-i3p Год назад +1

    Amazing tutorial, you explain things beautifully. Thank you!

  • @majeedpanahi5783
    @majeedpanahi5783 6 месяцев назад

    Thank you. Pagination is well explained in a professional-like manner.

  • @lazybusylog5081
    @lazybusylog5081 Год назад +1

    Thanks! Quick and easy explanation! Nice job!

  • @conradunderwood6742
    @conradunderwood6742 Год назад +1

    Thanks for this video. It was easy to follow and helped me a lot

  • @jpacs3738
    @jpacs3738 8 месяцев назад

    Thank you so much! This is very helpful tutorial. You're awesome!

  • @bibliothecaEsoterica
    @bibliothecaEsoterica 2 месяца назад

    Thank you Sir, you helped me with my website

  • @ngetsophea8812
    @ngetsophea8812 Год назад +1

    I tested the style "active" in the JS on my end. I use +1 in stead of -1, it's working. I still don't know when I use -1, it's two steps behind the active page. For example, I am on page 4, but the active page show on page 2.

  • @aymdatenth1796
    @aymdatenth1796 Год назад

    thank you this was quick and easy without the use of bootstrap

  • @abdulghaffar3110
    @abdulghaffar3110 10 месяцев назад

    Hi! very nice video for my project thanks.

  • @cecilbennett289
    @cecilbennett289 9 месяцев назад

    Wow this is a nice video man, thank you so much 💪💡

  • @lordcarlocabangal5713
    @lordcarlocabangal5713 Год назад

    very useful tutorial!!!! Thanks a lot!!!

  • @VlkSamotar
    @VlkSamotar Год назад

    It was very useful for me. Thank you.

  • @sdsd-ec8rw
    @sdsd-ec8rw Год назад +3

    do you have a video for the case when there are a lot of pages that don't fit in the screen? I think it is important to address this case

    • @DigitalFox-tutorials
      @DigitalFox-tutorials  Год назад +2

      Hey, no i don't, but you are right. I will try to do a video on it.

  • @dinidumadushan4749
    @dinidumadushan4749 Год назад

    really helpful. thank you very much..

  • @marcofloriano
    @marcofloriano 7 месяцев назад

    Amazing tutorial nice job

  • @lowEndAppsAndGames
    @lowEndAppsAndGames 7 месяцев назад

    Hi thanks alot can you make the other one where you scroll to initiate the pagination to move to the next pages automatically without clicking do it with no frameworks like jquery and bootstrap as other youtubers have done it.

  • @Ann-t1n
    @Ann-t1n 5 месяцев назад

    thanks its really helpful

  • @parakeetbird863
    @parakeetbird863 10 месяцев назад

    can you make a video on how I can make it dynamic, where if I have more than 5 pages the next numbers would show us an ellipsis and the same if the first page number can't be seen

  • @d.o.balogun3228
    @d.o.balogun3228 Год назад

    Good job

  • @majeedpanahi5783
    @majeedpanahi5783 6 месяцев назад

    I do have a question though. Why would a developer go through this long coding while he/she can use the Bootstrap 5 libraries? What is the advantage of one over another?

    • @DigitalFox-tutorials
      @DigitalFox-tutorials  6 месяцев назад +1

      Hey, i know it's more convenient to use bootstrap, not only to create a pagination but other stuff to,
      but you must also know basic programming stuff like this one.

  • @nicodemoscarfo
    @nicodemoscarfo 2 месяца назад

    Nice tutorial, what would be the code for adding elipsis with a rang of 5 buttons like < 1... 5 6 7 8 9 10 ...99 >

  • @rodolfosgc1882
    @rodolfosgc1882 11 месяцев назад

    Gracias me funciono

  • @photoinshot1355
    @photoinshot1355 Год назад

    Great video thanks! Is there a way to search a paginated table?

    • @DigitalFox-tutorials
      @DigitalFox-tutorials  Год назад

      Thank you. Yes, we can use javascript to fetch all the results, (titles), from the page and then search through them.

  • @NtiranyibagiraFelicien
    @NtiranyibagiraFelicien 9 месяцев назад

    tHANKS bUT yOU eXPLAIN qUIKLY.

  • @sam-j4zy
    @sam-j4zy Год назад

    Thanks alot

  • @Japantalents
    @Japantalents Год назад

    Bruh I like ur voise 😂❤

  • @lazy_coding
    @lazy_coding 4 месяца назад

    i wrote
    For previous button
    ?page_num=
    For next button
    ?page_num=

  • @OnyeStephen
    @OnyeStephen Год назад

    Amazing tutorial, but as a curious student, if a user sets the page-nr = 0 or less than 0, it displays an error or says (showing -3434 of 10pages) is there a way to fix this so that if the value of the page-nr = 0 or less than 0 the page-nr is automatically set to 1. Used this code to fix it if(!is_numeric($_GET["page-nr"]) || ($_GET["page-nr"] $pages) ){
    //here we are making sure that if the user sets the page through the url a value that is not numeric, less than 0 or greater than the number of pages from the database, we referesh the page
    header("Location:index.php");
    } else {
    $page = $_GET["page-nr"] - 1;
    }

    • @PhongLan315
      @PhongLan315 Год назад +1

      Where to put that code?

    • @OnyeStephen
      @OnyeStephen Год назад

      @@PhongLan315have the code where you set the page start point $page on the php scripts page

    • @DigitalFox-tutorials
      @DigitalFox-tutorials  Год назад

      @PhongLan315 Hey, replace the $page = $_GET['page-nr'] - 1; in the script.php file withe the clever solution that @OnyeStephen provided. I mean the whole if statement.

    • @DigitalFox-tutorials
      @DigitalFox-tutorials  Год назад

      @OnyeStephen Hey, nice, i had that in my mind but i forgot during the recording.
      Great work.

  • @lazy_coding
    @lazy_coding 4 месяца назад

    For page of numbers