mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-10-13 18:04:54 +02:00
Some query optimisations
This commit is contained in:
@@ -3,13 +3,13 @@
|
||||
</div>
|
||||
<footer>
|
||||
<p>© <?php echo $config['site_title'];?>.
|
||||
<?php
|
||||
<?php
|
||||
$time = microtime();
|
||||
$time = explode(' ', $time);
|
||||
$time = $time[1] + $time[0];
|
||||
$finish = $time;
|
||||
$total_time = round(($finish - $start), 4);
|
||||
echo 'Server date and clock is: '. getClock(false, true) .' Page generated in '. $total_time .' seconds.';
|
||||
echo 'Server date and clock is: '. getClock(false, true) .' Page generated in '. $total_time .' seconds. Q: '.$aacQueries;
|
||||
?>
|
||||
<a href="http://www.css3templates.co.uk">Design: css3templates.co.uk</a>. Engine: <a href="credits.php">Znote AAC</a></p>
|
||||
</footer>
|
@@ -1,3 +1,6 @@
|
||||
<?php
|
||||
//data_dump($accQueriesData, false, "Done Queries");
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<?php include 'layout/footer.php'; ?>
|
||||
|
@@ -21,7 +21,8 @@
|
||||
}
|
||||
if ($status) {
|
||||
?>
|
||||
<li><a href="onlinelist.php">Players online: <?php echo user_count_online();?></a></li>
|
||||
<li><a href="onlinelist.php">Players online:
|
||||
<?php echo user_count_online(); ?></a></li>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
Reference in New Issue
Block a user