예제 #1
0
파일: PuntoWS.php 프로젝트: lasplamas/Sitio
<?php

include $_SERVER['DOCUMENT_ROOT'] . '/ControlBalneario/Models/Punto.php';
if ($_GET['action'] == "getAll") {
    $p = new Punto();
    $all = $p->getAll_json();
    print_r($all);
}