pubg/includes/navigation.php
2023-11-14 12:59:34 +01:00

32 lines
859 B
PHP

<?php
$host = $_SERVER['HTTP_HOST'];
if ($host == 'dev.dtch.online') {
echo "<center>You are on the development! Site</center>";
}
?>
<div class="topnav">
<a href="index.php" class="active">Home</a>
<div id="myLinks">
<a href="clan_stats.php">Clan Stats</a>
<a href="user_stats.php">User Stats</a>
<a href="topstats.php">Top10</a>
<a href="topstatsavg.php">Match % T10</a>
<a href="latestmatches.php">Last Matches</a>
<a href="last_stats.php">Last month %</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<script>
function myFunction() {
var x = document.getElementById("myLinks");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>