happy hardcore i copied and tried ur php script for server status
i put this into my site
and all that happend was is showd green righting saying "echo "<font> Online!</font>"; }else { echo "<font> Offline! </font>";}?>Code:<?php
/*change your server's name and host*/
$server['name'] = "BloodPT";
$server['host'] = "87.90.185.247";
$server['port'] = "10007";
/*no need to change the further code*/
$connection = @fsockopen($server['host'], $server['port'], $ERROR_NO, $ERROR_STR, (float)1.5);
echo "{$server['name']} PristonTale server is ";
if($connection)
{
fclose($connection);
echo "<font>Online!</font>";
}
else
{
echo "<font>Offline!</font>";
}
?>
it was inside a html document.
i dno how im spose 2 do it :(
2ndly.
i tried the froggpt registration script and the php reg script from the rft section and i can get neither to work :( can some1 please explain to me how i am to set them up?
i use dreamweaver mx2004 for my web development
and final question.
for my site i have a menu. but i want that menu to be at the top of the page through all the pages with a border down the side and make it stay uniform across all my websties pages.
any one able 2 tell me how i go by that?

