| Current Path : /home/wirbesti/public_html/php/ |
| 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/>';
}
?>