Very strange robotic voice, but somehow the material is clear.good job!!!
@vaibhavkanmeriya94164 жыл бұрын
It works very easily and efficiently through your video.
@santhoshkumar-sf4bc6 жыл бұрын
you are really great sir, your teaching well, nd i'm regularly watching your videos
@joniqs918 жыл бұрын
Great tutorial, i have a problem when i click the button it deletes the rows that i want in my database, but i can still see them on my page, im using jquery 1.12.2 version.
@spicy_bala4 жыл бұрын
Really Great Tutorial sir, Thank You so Much sir
@MMartinsMr6 жыл бұрын
Hi, I've been following your videos and I've learned a lot. I am a beginner in systems programming and as such I always have doubts. I would like to know if it is possible to do this with tables using check box to choose and instead of deleting add in another table with the remove options in the other table and return to the first table. It would actually look like the vídeo “Insert Dinamic Multi Select Box Data using Jquery Ajax PHP” Thank you very much
@gotsavana49514 жыл бұрын
Thank you for this amazing tutorial
@luckydream44 жыл бұрын
thank you sir..
@ubaid254 жыл бұрын
Excellent, Thank you so much
@محمدالسبيعي-ك5غ8ظ4 жыл бұрын
Thanks a lot bro
@charlesdilinila47437 жыл бұрын
Thank you very much sir. You've been helping me a lot. God bless you 😊
@I_dont_like_handles7 жыл бұрын
Very nice! One question though, isn't it expensive to execute DELETE multiple times? Couldn't it be execute altogether using something like "...WHERE customer_id IN ('" array here "')"? I am just starting with web coding, so please feel free to correct me if I am being unrealistic.
@jeanpierrevalls95722 жыл бұрын
Bonjour, J'ai suivi ce tutoriel mais je n'arrive pas à le faire fonctionner, la suppression ne se fait pas? avec vous eu ce problème
@solinsm98378 жыл бұрын
Thanks for this video It's very useful and help me with checkboxes problem :)
@brayanojeda94696 жыл бұрын
muchas Gracias me sirvio Mucho ....
@SaifulIslam-dn3tj5 жыл бұрын
Great tutorial,
@euskalpaf32855 жыл бұрын
Your script has some issues if we don't have check any checkbox, he will always ask : do you want to delete ? However we don't have selected any row. So i tried to improve and i think it's better to use this one : $(document).ready(function(){ $('#btn_delete').click(function(){ var id = []; $(':checkbox:checked').each(function(i){ id[i] = $(this).val(); }); if(id.length === 0) //tell you if the array is empty { alert(Please Select atleast one checkbox."); } else if(confirm("Are you sure you want to delete this?")) { $.ajax({ url:'delete.php', method:'POST', data:{id:id}, success:function() { for(var i=0; i
@freethinker9718 жыл бұрын
Awesome, bro. Carry on. Thanks a lot.
@b2jthe_one9757 жыл бұрын
thanks very much. good tutorial. Please can you do a video with ajax select
@TariqSajid8 жыл бұрын
thanks . Can you make tutorial on shopping cart using ajax and php?
@ativoconsultores10496 жыл бұрын
great video I tried to change the name delete ( Delete ) to so I can select all, but it is not working. What should I do to be able to select all rows at the same time. thank you
@WhiteWidowdj8 жыл бұрын
Is it safe from Sql Injections?
@multazimahabdulmuin75177 жыл бұрын
Hi sir.. thanks for making this video , its help me so much. but i want to ask you something, i have follow this code and it work, but when i delete the data from my table and try to refresh the page . the data comeback and my database from phpmyadmin still not remove. what should i do?
@inzimamulhaq62447 жыл бұрын
Thank You so much
@webslesson7 жыл бұрын
Dear Inzi Khan, you are most welcome. Stay connected with us.
@jobayer4650 Жыл бұрын
sir how i can delete multiple rows with images, included this rows form folder? He said try for each loop
@tandat46197 жыл бұрын
Thank you
@webslesson7 жыл бұрын
Thank you Tan Dat for your kind words.
@proxygulshan3 жыл бұрын
how to do that including another selected with pagination ?
@YenNguyen-em6cf8 жыл бұрын
thanks
@alivaghosh25516 жыл бұрын
need a help about the data send through ajax data attribute? what are those parameters? {id:id} please define
@asifrock54436 жыл бұрын
How to select multiple values from database using checkbox
@BradleyHerbst8 жыл бұрын
Friends!
@MarcosVinicius-gj6qg7 жыл бұрын
Muito bom
@webslesson7 жыл бұрын
Thank you Marcos Vinicius for your kind words.
@MarcosVinicius-gj6qg7 жыл бұрын
Obrigado por compartilhar. Seus tutoriais são referência para mim. Parabéns pelo excelente conteúdo.
@jeanpierrevalls95722 жыл бұрын
Bonjour, merci pour ce tutoriel. J'ai suivi ce tutoriel mais je n'arrive pas à le faire fonctionner, la suppression ne se fait pas? avec vous eu ce problème, j'ai pas de message d'erreur je peut faire voir mon code si vous le souhaiter. merci de votre aide.cordialement
@shovonrahmanshuvo8 жыл бұрын
I need help. It is only sending ID, that is why i can delete the information from database. can you help me doing this... i want to delete file from folder also... if(isset($_GET['id'])){ $id=$_GET['id']; $name=$_GET['name']; if(unlink('../docs/'.$_GET['name'])){ $stmt=$db->prepare("delete from test where id='$id'"); $stmt->execute(); } this is just without using ajax and can only delete a single file at once. Need a method for deleting all the selected checkbox item from db as well as folder. Thanks.