Ejemplo n.º 1
0
function RoomsOfHotel($htl_id)
{
    $ht = new Hotel();
    return json_encode($ht->get_RoomTypes($htl_id));
}
Ejemplo n.º 2
0
 public function get_RoomTypes($id)
 {
     $h = new Hotel();
     echo json_encode($h->get_RoomTypes($id));
 }