Advertisement
ujiajah1

delete-data-tabel-with-alert-confirm

Aug 13th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <?php  
  2. include "koneksi.php";  
  3. $hapus_data = mysql_query("delete from tamu where id_bukutamu = '$_GET[id]'",$koneksi);  
  4. if($hapus_data){  
  5. ?>  
  6. <script language="javascript">  
  7. alert('Yakin lo mau di hapus, ga nyesel kan');  
  8. document.location="lihat.php";  
  9. </script>  
  10. <?php  
  11. }else{  
  12. ?>  
  13. <script language="javascript">  
  14. alert('Gagal Menghapus Pesan Karena Gangguan Mental');  
  15. document.location="lihat.php";  
  16. </script>  
  17. <?php  
  18. }    
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement