snexo.co.uk/public_html/includes/header_data/header-script.php
lukejelse04 45c6834231 Near Complete Version
website is now finished with the exception of the captcha, I am having issues authenticating the state of the captcha
2021-05-13 21:07:34 +01:00

13 lines
326 B
PHP

<?php
if($_SERVER['REQUEST_URI'] == "/examples.php"){
include "examples-header.html";
}elseif ($_SERVER['REQUEST_URI'] == "/faq.php") {
include "faq-header.html";
}else{
include "index-header.html";
}
//echo "<script>console.log(' " . $_SERVER['REQUEST_URI'] . " ')</script>";
?>