SW/assets/php/common/changeCSS.php

6 lines
211 B
PHP
Raw Normal View History

2021-06-04 12:38:17 +02:00
<?php
include('../../../assets/php/config.php');
2021-06-04 23:47:23 +02:00
if($_GET["css"] === "main.css") $_SESSION["css"] = "main.css";
else if($_GET["css"] === "highContrast.css") $_SESSION["css"] = "highContrast.css";
2021-06-04 12:38:17 +02:00
?>