website/public/API/config.php

13 lines
189 B
PHP
Raw Normal View History

2021-07-11 01:08:48 +02:00
<?php
require "./lib/config.php";
$configValue = $_GET['name'];
switch ($configValue){
case "sitekey":
echo($sitekey);
break;
default:
echo("notFound");
}