Advertisement
kura2yamato

check_unit.php

May 12th, 2017
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2. //check_unit.php
  3. header('content-type:json');
  4. $data=true; //asumsikan benar
  5. $status_code=200;
  6.  
  7. //========Anggap gagal
  8. /*
  9. $data=array('message'=>'maaf gagal');
  10. $status_code = 244;
  11. */
  12.  
  13.  
  14. $result=array(
  15.     'status_code'=>$status_code,
  16.     'data'=>$data
  17. );
  18.  
  19.  
  20. echo json_encode($result);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement