website/public/API/config.php
2021-07-11 01:08:48 +02:00

13 lines
189 B
PHP

<?php
require "./lib/config.php";
$configValue = $_GET['name'];
switch ($configValue){
case "sitekey":
echo($sitekey);
break;
default:
echo("notFound");
}