This commit is contained in:
Rushabh Gosar
2022-01-07 19:52:48 -08:00
parent 75e0d2f75a
commit 8ea938029a
127 changed files with 25750 additions and 20 deletions

View File

@@ -0,0 +1,39 @@
<?php
require_once __DIR__ . '/hunt.php';
$no_nearest_hunts = getCountNearestHunts($_GET['coordinates']);
?>
<style>
body {
margin:2%;
}
#map {
background-color: #80B2CC;
float:left;
height: 40%;
width:100%;
}
div{
float:left;
margin-top: 1%;
}
.left {
float:left;
}
.right {
float:right;
}
</style>
<body>
<div id="map">
</div>
<div class="right">
Active hunts : <?php echo $no_nearest_hunts; ?>
</div>
<div class="left">
User Name : <?php echo $_GET['username']; ?>
</div>
</body>