Add files via upload

This commit is contained in:
Fernando Méndez
2021-06-04 12:38:17 +02:00
committed by GitHub
parent 22977e8091
commit 8dafa546b6
9 changed files with 57 additions and 20 deletions

View File

@ -0,0 +1,9 @@
<?php
include('../../../assets/php/config.php');
switch(true){
case strpos($_GET["css"], "main.css"): $_SESSION["css"] = "main.css"; break;
case strpos($_GET["css"], "highContrast.css"): $_SESSION["css"] = "highContrast.css"; break;
default: $_SESSION["css"] = "main.css"; break;
}
?>