Files
controls-web/OLD/trending.php
2026-02-17 12:44:37 -06:00

48 lines
1.1 KiB
PHP

<!DOCTYPE html>
<?php include 'charts/fusioncharts.php';?>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="http://lasuca.com/images/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="script.js"></script>
<script src="js/prototype.js" type="text/javascript"></script>
<script src="js/scriptaculous.js" type="text/javascript"></script>
<script type="text/javascript">
function showHint()
{
var sid = Math.random();
new Ajax.Updater('overview_values', 'data/overviewdata.php?sid=' + sid, {asynchronous:true});
}
function startShowing()
{
new PeriodicalExecuter(showHint, 1);
new PeriodicalExecuter(function(pe) {}, 5);
}
startShowing();
</script>
</head>
<body>
<div class="center">
<div class="header">
<h1>LASUCA CONTROLS</h1>
<p>Trends</p>
</div>
<div class="row">
<?php include 'menu.php';?>
<div class="col-13">
<?php include 'charts/chart.php';?>
</div>
</div>
<?php include 'footer.php';?>
</body>
</html>