Це відео не доступне.
Перепрошуємо.

Creating a simple pagination using php and mysql

Поділитися
Вставка
  • Опубліковано 22 лют 2023
  • In this tutorial we are going to explain step by step, how to create a
    pagination using php and mysql.
    You can read the article here:
    digitalfox-tut...
    You can buy me a coffee and get the whole source code in a zip file.
    www.patreon.co...

КОМЕНТАРІ • 52

  • @HakanGalip
    @HakanGalip 27 днів тому

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

  • @NoelReinhardt
    @NoelReinhardt 7 місяців тому +2

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

  • @majeedpanahi5783
    @majeedpanahi5783 Місяць тому

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

  • @user-yg1nm6vj4b
    @user-yg1nm6vj4b 9 місяців тому +1

    Amazing tutorial, you explain things beautifully. Thank you!

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

  • @jpacs3738
    @jpacs3738 3 місяці тому

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

  • @ngetsophea8812
    @ngetsophea8812 8 місяців тому +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.

  • @marcofloriano
    @marcofloriano 2 місяці тому

    Amazing tutorial nice job

  • @cecilbennett289
    @cecilbennett289 4 місяці тому

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

  • @Ann-t1n
    @Ann-t1n 8 днів тому

    thanks its really helpful

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

    It was very useful for me. Thank you.

  • @abdulghaffar3110
    @abdulghaffar3110 5 місяців тому

    Hi! very nice video for my project thanks.

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

  • @lordcarlocabangal5713
    @lordcarlocabangal5713 10 місяців тому

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

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

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

  • @NtiranyibagiraFelicien
    @NtiranyibagiraFelicien 4 місяці тому

    tHANKS bUT yOU eXPLAIN qUIKLY.

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

    really helpful. thank you very much..

  • @majeedpanahi5783
    @majeedpanahi5783 Місяць тому

    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  Місяць тому +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 5 місяців тому

    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

  • @lowEndAppsAndGames
    @lowEndAppsAndGames 3 місяці тому

    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 7 місяців тому

    Gracias me funciono

  • @d.o.balogun3228
    @d.o.balogun3228 Рік тому

    Good job

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

    Thanks alot

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

    Bruh I like ur voise 😂❤

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

  • @OnyeStephen
    @OnyeStephen 9 місяців тому

    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 9 місяців тому +1

      Where to put that code?

    • @OnyeStephen
      @OnyeStephen 9 місяців тому

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

    • @DigitalFox-tutorials
      @DigitalFox-tutorials  9 місяців тому

      @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  9 місяців тому

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