Creating a simple pagination using php and mysql

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ม.ค. 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.

  • @conradunderwood6742
    @conradunderwood6742 ปีที่แล้ว +1

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

  • @lazybusylog5081
    @lazybusylog5081 ปีที่แล้ว +1

    Thanks! Quick and easy explanation! Nice job!

  • @bibliothecaEsoterica
    @bibliothecaEsoterica 2 หลายเดือนก่อน

    Thank you Sir, you helped me with my website

  • @lordcarlocabangal5713
    @lordcarlocabangal5713 ปีที่แล้ว

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

  • @VlkSamotar
    @VlkSamotar ปีที่แล้ว

    It was very useful for me. Thank you.

  • @jpacs3738
    @jpacs3738 8 หลายเดือนก่อน

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

  • @cecilbennett289
    @cecilbennett289 9 หลายเดือนก่อน

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

  • @marcofloriano
    @marcofloriano 7 หลายเดือนก่อน

    Amazing tutorial nice job

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

  • @Ann-t1n
    @Ann-t1n 4 หลายเดือนก่อน

    thanks its really helpful

  • @d.o.balogun3228
    @d.o.balogun3228 ปีที่แล้ว

    Good job

  • @dinidumadushan4749
    @dinidumadushan4749 ปีที่แล้ว

    really helpful. thank you very much..

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

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

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

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

  • @Japantalents
    @Japantalents ปีที่แล้ว

    Bruh I like ur voise 😂❤

  • @sam-j4zy
    @sam-j4zy ปีที่แล้ว

    Thanks alot

  • @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  5 หลายเดือนก่อน +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.

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

  • @NtiranyibagiraFelicien
    @NtiranyibagiraFelicien 9 หลายเดือนก่อน

    tHANKS bUT yOU eXPLAIN qUIKLY.

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

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