Hi,
I'm looking for a little PHP script that shows what's the most online record on your hotel. (that can you find in the DB inside table system_stats but I want to show it on the website)
Who can script this? Tnx
Hi,
I'm looking for a little PHP script that shows what's the most online record on your hotel. (that can you find in the DB inside table system_stats but I want to show it on the website)
Who can script this? Tnx
BeastFC, I think that you mean this:
- Jasler<?php
$query_name = mysql_query("SELECT * FROM system_stats");
$query_get = mysql_fetch_array($query_name);
echo $query_get["column name"];
?>
(This is just an example)
Thanks! Really appreciated!
Your welcome ;)