Ok I got it working, here is my new code, but I have yet another problem...
The server is currently <?php
if ($name==Vortex)
{
?>
<b>Online</b>
<?
}
else
{
?>
<b>Offline</b>
<?
};
?>
Ok now again above this code in the php file I have a form and in the form I have the following line
<input type=hidden name="name" value="Vortex">
The form keeps saying offline now, shouldn't it say online with the script above and given that line in the form?