Part 15 - Admin Panel: How to Delete Multiple Row using Checkbox in PHP

Поделиться
HTML-код
  • Опубликовано: 11 июн 2019
  • Here.. in this video, i have done that, how to delete multiple row data displayed in a table. so, we are using a checkbox and select(checking) all the row which we want to delete and update its value using ajax jquery and then we are Deleting that checked checkbox values.
    #deletemultiplerecords #deletemultiple row in php
    Part 14 [a]: How to insert Image in PHP
    • Part 14-[A]-Admin Pane...
    Part 14 [b]: How to retrieve Image in PHP
    • Part 14-[ B ]-Admin Pa...
    Part 14 [c]: How to Edit and Update Image in PHP
    • Part 14-[ C ]-Admin Pa...
    Part 14 [d]: How to Delete Image in PHP
    • Part 14-[ D ]-Admin Pa...
    Part 15 : How to Delete Multiple Row using Checkbox in PHP
    • Part 15 - Admin Panel:...

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

  • @codingworld1075
    @codingworld1075 5 лет назад

    Great tutorials

  • @joshuavalencia1819
    @joshuavalencia1819 4 года назад

    I really idolize you sir . They say that Great students came from Great Teacher, and I will become, Great Students because of you sir . keep it up sir . Thanks for every tutorial you made for us , I really appreciate it .^^

  • @jayrosepaciente9639
    @jayrosepaciente9639 3 года назад

    Very nice tutorial sir. Thank you so much!. Sir can you make a tutorial how to filter data

  • @baraadrians522
    @baraadrians522 3 года назад

    Nice tutorial bro
    But i have a question,how to unlink multiple file in folder using checkbox?
    Hope you answer my question🙏🏼

  • @islamicpaath8
    @islamicpaath8 4 года назад

    Hi sir, your designs are really good, how many years of experience would you have? Can you please help me for completing my project

  • @Programming177
    @Programming177 3 года назад

    Sir , Please help me,Like you said i created this worked well ,then why it didn't work after hosting ?

  • @ikondemy
    @ikondemy 5 лет назад

    still waiting for your next update, good tutorials to learn coding
    sir are you going to include comment and rating system

    • @FundaOfWebIT
      @FundaOfWebIT  5 лет назад

      Thank you.
      Comment and rating system ?. U need ?.
      There are 2 ways ... one is user logged in means... he wil giv comment and rating... so.. u wil get the detail by his name..
      And one is just a guest user...
      Enter name and comment and rating.
      ....
      So.. please explain clearly.. on what concept ur doing it.. so.. ill do it according to that..
      :) thank you once again..

    • @ikondemy
      @ikondemy 5 лет назад

      @@FundaOfWebIT , Dear if you can do comment and rating system with login for e-commerce website that will great. thanks and have a great day...

  • @thambirajahsritharan40
    @thambirajahsritharan40 3 года назад

    how to delete same time upload fplder images? also

  • @ShahzaibKhan-wh5hh
    @ShahzaibKhan-wh5hh 2 года назад

    multiple images folder se bi delete ho rahi hai kia ?

  • @josehilton8791
    @josehilton8791 5 лет назад +1

    Great sequence tutorial, im learning alot, but can you share the complete code for study? sometime i try do to something new i got a error

    • @FundaOfWebIT
      @FundaOfWebIT  5 лет назад

      Yaa sure... I Wil start a blog page.. where I will update all the codes..
      Thank you for Supporting me.

  • @ajaymahto2049
    @ajaymahto2049 4 года назад

    sir not working multiple checkbox delete ,
    function togglecheckbox(box)
    {
    var id = $(box).attr("value");
    if($(box).prop("checked") == true)
    {
    var visible = 1;
    }
    else
    {
    var visible = 0;
    }
    var mydata = {
    "search_data": 1,
    "id": id,
    "visible": visible
    };
    $.ajax{
    type: "post",
    url: "code.php",
    data: mydata,
    success: function(data) {
    alert('data checked');
    }
    });
    }
    help me sir