17 lines
281 B
PHP
17 lines
281 B
PHP
<?php
|
|
require_once("inc/bootstrap.php");
|
|
|
|
require_once("participoLib/shiai.php");
|
|
|
|
// Sending Response
|
|
// - setting header
|
|
// - we send a json-formatted response
|
|
header("Content-Type: application/json");
|
|
// - sending body payload
|
|
echo(
|
|
json_encode(
|
|
Shiai::dbSelect()
|
|
)
|
|
);
|
|
?>
|