first commit

This commit is contained in:
2022-03-10 17:17:43 +01:00
commit 652bed79a8
76 changed files with 4955 additions and 0 deletions

14
vegas/test.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
echo $_SERVER['SERVER_NAME'] .'<br>';
echo $_SERVER['SCRIPT_NAME'] .'<br>';
echo $_SERVER['REQUEST_URI'] .'<br>';
echo $_SERVER['PHP_SELF'] .'<br>';
$host = (($_SERVER['SERVER_NAME'] == "sur-le-sentier.fr") ? "blog" : "wordpress");
echo "A: " . $host;
if ($_SERVER['SERVER_NAME'] == "sur-le-sentier.fr") $host = "blog";
else $host = "wordpress";
echo "B: " . $host;
?>