Webservice sederhana untuk keperluan pembelajaran pemrograman webservice di ITB STIKOM Bali, MK Perancangan Web dan Pemrograman Web.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
261 B

  1. <?php
  2. require_once 'library.php';
  3. $dokter = [];
  4. if(isset($_GET['param'])) {
  5. $id_poliklinik = addslashes($_GET['param']);
  6. $dokter = get_all("dokter", "nama", true, "id_poliklinik='$id_poliklinik'");
  7. }
  8. if($dokter) resp_success($dokter);
  9. else resp_failed();