17 lines
282 B
PHP
17 lines
282 B
PHP
<?php
|
|
include_once "../../global.inc.php";
|
|
require_once "HelloApi.php";
|
|
|
|
|
|
$app = new HelloApi();
|
|
|
|
$app->get('/hello/:name', function ($name) use ($app) {
|
|
$app->connect();
|
|
print_r($app->sendHelloQuery());
|
|
// print
|
|
echo "Hello, $name";
|
|
});
|
|
|
|
$app->run();
|
|
?>
|