Your IP : 216.73.216.39


Current Path : /home/wirbesti/public_html/php/
Upload File :
Current File : /home/wirbesti/public_html/php/testzip.php

<?php
try {
require_once 'setting.config.php';
require_once 'DBConnection.php';
require_once 'Canton.php';


    $database = new DBConnection($config);
    $canton = new Canton($database);

    $result = $canton->getCantonbyZip(9658);
    echo 'foo';
    var_dump($result);
    echo 'bar';
} catch (Exception $ex) {
    echo 'error '.$ex->getMessage().'<br/>';
}

?>