Files
geodb/geoapi/service/helloservice/index.php
2013-05-20 14:46:49 +02:00

14 lines
190 B
PHP

<?php
include_once "../../global.inc.php";
require_once PATH_API."/api.php";
$app = new api();
$app->get('/hello/:name', function ($name) {
echo "Hello, $name";
});
$app->run();
?>