hmm sorry for that *blush*
little note...i used "servertext" as field name but you can replace it with what you want to.
if you want more fields just add a field in phpmyadmin
or run this query
Code:
ALTER TABLE `chratnox`.`serverstatus` ADD `servertext` VARCHAR(50) NOT NULL;
then..in serverstatusadmin.php
find:
PHP Code:
makeinputcode("Server Comments","servercomments","");
and add this underneath it:
PHP Code:
makeinputcode("[b]Server Text[/b]","[b]servertext[/b]","");
thend find :
PHP Code:
$DB_site->query ("INSERT INTO serverstatus (serverid,servertitle,serverstatus,serverspeed,serverlocation,serveroperators,serverowner,servercomments) VALUES (NULL,'$servertitle','1')");
and replace it with :
PHP Code:
$DB_site->query ("INSERT INTO serverstatus (serverid,servertitle,serverstatus,serverspeed,serverlocation,serveroperators,serverowner,servercomments,[b]servertext[/b]) VALUES (NULL,'$servertitle','1')");
then find :
PHP Code:
$DB_site->query("UPDATE serverstatus SET servertitle='$servertitle',serverstatus='$updown',serverspeed='$serverspeed',serverlocation='$serverlocation',serveroperators='$serveroperators',serverowner='$serverowner',servercomments='$servercomments' where serverid='$serverid'");
and replace it with :
[php]
$DB_site->query("UPDATE serverstatus SET servertitle='$servertitle',serverstatus='$updown', serverspeed='$serverspeed',serverlocation='$server location',serveroperators='$serveroperators',serve rowner='$serverowner',servercomments='$servercomme nts',
servertext='$servertext' where serverid='$serverid'");
[php]
then find :
PHP Code:
makeinputcode("Server Comments","servercomments","$servstats[servercomments]");
and UNDER it add :
PHP Code:
makeinputcode("Server
Text","servertext","$servstats[servertext]");
and save and upload your file
then go to your templates and edit "serverinfo" template
and add the variable :
$serverinfo[servertext] anywhere you want to.
so for example :
find :
PHP Code:
<b>Comments : </b> $serverinfo[servercomments]
and replace it with :
PHP Code:
<b>Comments : </b> $serverinfo[servercomments]<br>
<b>Text : </b> $serverinfo[servertext]
well, then you go in your admin cp and enter the new field