I want to display some text next to the 'Most users ever online was x, 20th January 2008 at 12:53 PM.' text on the index page but do not want it to appear on the /online.php page.
I have written this code but it is showing nothing when implemented into the online phrase: -
Code:
Most users ever online was {1}, {2} at {3}.
<?
$url = $_SERVER['REQUEST_URI'];
if($url == 'online.php')
{
echo "front";
}
else
{
echo " | <font color=#045CA7>Administrators</font> | <font color=#55932F>Moderators</font> | <font color=#CD54C1>Premium Members</font>
| Members";}
?>
What am i doing wrong?