コード例 #1
0
<?php

include_once "../Model/Destinos.php";
if (isset($_POST['destinos']) and $_POST['destinos'] == "all") {
    $desti = new Destinos();
    $response = $desti->Get_all_destinos();
    if (isset($response)) {
        echo json_encode($response);
    }
}
if (isset($_POST['id_destino'])) {
    $id = $_POST['id_destino'];
    $desti = new Destinos();
    $response = $desti->Get_destino($id);
    if (isset($response)) {
        $respon = array($response[0], utf8_encode($response[1]), utf8_encode($response[2]), $response[3], $response[4], $response[5]);
    }
    echo json_encode($respon);
}
// Muestra todos los paises //
if (isset($_POST['paises'])) {
    $desti = new Destinos();
    $response = $desti->Get_paises();
    if (isset($response)) {
        $respon = array($response[0], $response[1]);
    }
    echo json_encode($respon);
}
if (isset($_REQUEST['destin_pais'])) {
    $desti = new Destinos();
    $id = $_REQUEST['destin_pais'];