Webservice sederhana untuk keperluan pembelajaran pemrograman webservice di ITB STIKOM Bali, MK Perancangan Web dan Pemrograman Web.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
298 B

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