Advertisement
Bedhoel

cso_6

Feb 3rd, 2019
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. else if($act=="check_waktu") {
  2.     $id = $_REQUEST['id_data_antrian'];
  3.     if(!empty($id)){
  4.         $data = $gen_model->GetOneRow("sisa_durasi","data_antrian",array('id_data_antrian'=>$id));
  5.         if(!empty($data['sisa_durasi'])){
  6.             echo $data['sisa_durasi'];
  7.         }
  8.         else {
  9.             echo "no_data";
  10.         }
  11.     }
  12.     else {
  13.         echo "no_data";
  14.     }
  15.     $db->close();
  16.          die();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement