Skip to content
Snippets Groups Projects
config.php 189 B
Newer Older
  • Learn to ignore specific revisions
  • <?php
    require "./lib/config.php";
    
    $configValue = $_GET['name'];
    
    switch ($configValue){
        case "sitekey":
            echo($sitekey);
            break;
        default:
            echo("notFound");
    }