| Current Path : /var/www/html/mmishra/indem/iiita/ |
| Current File : /var/www/html/mmishra/indem/iiita/hitmeter.php |
<?php
checklogin($role);
$r = mysql_query("select * from hitmeter order by counter desc");
echo "Below table reflects performance of this site link-wise in descending order. This will help you in focusing on demanded features/content for improvements of the website in tern business too.";
echo "<table width='98%' class='normal'>
<tr><th>No.</th><th>Pages</th><th>Counter</th><th>Dated</th></tr>";
while($o = mysql_fetch_object($r)) {
$i++;
echo "<tr valign='top' bgcolor='";
if ($i % 2) echo $col1;
else echo $col2;
echo "'><td>$i</td><td>$o->url</td><td>$o->counter</td><td>$o->dated</td></tr>";
}
echo "</table>";
?>