ok i made a counter but i want it to say counter and be on the bottom the counter is on the top and the number of visitors its on the botom how can i make them both at the bottom
<center>
<font size=4><b>You Are Visitor</b></font><br>
<center><font color="#FF0000">
<font size=6>
<?php
print ("<center><font color=white Counter:</font></center>");
require ("index.html");
$counterFile='count.txt';
file_exists($counterFile) ? $count=trim(implode('',file($counterFile))) :
$count=0;
$count++;
if ($fp=@fopen($counterFile,'w'))
{
fwrite($fp,$count,strlen($count));
fclose($fp);
}
else
echo "Couldn't write counter file";
echo "$count ";
?>
my code go check my counter out at www.babesoncams.com and see
help me someone