Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php session_start();
  2. include 'procesing.php';
  3. $db = new wap();
  4.  
  5. $act = $_GET['act'];
  6. if($act == "baru"){
  7. $db->tersimpan($_POST['a'],$_POST['b'],$_POST['c'],$_POST['d'],$_POST['e'],$_POST['f']);
  8. header("location:index.php");
  9. }
  10.  
  11. if($act == "hapus"){
  12. $db->terhapus($_GET['ic']);
  13. header("location:index.php");
  14. }
  15.  
  16. ?>