<?php
require "./lib/config.php";

$configValue = $_GET['name'];

switch ($configValue){
    case "sitekey":
        echo($sitekey);
        break;
    default:
        echo("notFound");
}