Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

my Registration page

Newbie Spellweaver
Joined
Jul 5, 2006
Messages
8
Reaction score
0
Location
behind you
just made it.. so many ppl asking this..
not really crative to make the layout.. if anyone have suggestion i will add it later.. thx..
 

Attachments

Last edited:
nice job on this, tho theirs a few problems...
It works, i config everything go to test reg/change pass and the pages dont even load. it just refreshes the screen ;D
 
Upvote 0
$fp = @fsockopen($srvip, $srvport, $errno, $errstr, 1);
if (!$fp)
{echo "Offline";}
else
{echo "Online";
fclose($fp);
}
 
Upvote 0
For server status:
Code:
<?php
$serverip = "serveripgoeshere";
$serverport = "6000";
?>
<?php
$serverstatus
 = fsockopen($serverip, $serverport, $errno, errstr, 1);
if (!$serverstatus) {
echo "Offline";
} else {
echo "Online";
fclose($serverstatus);
}
?>
Just change first 2 lines.
 
Upvote 0
well.. yes.. it refresh the page.. but the page works.. config connection and other is on the conf folder.. i dont finish yet making the page.. just release it cause many ppl want the reg page
 
Upvote 0
hey guys... someone can help me pls ???

what i put in
::

$srvip = "my server ip ???";
$srvport = "6000 ????";
$mssql_user = "what user ?? taht what i use in server.ini ???";
$mssql_pass = "what pass ?? taht what i use in server.ini ???";
$mssql_database = "GunzDB"???;
$mssql_host = "taht what i use to conetc the msql to cofig DB???";
 
Upvote 0
$srvip = "Put your ip(go to whatismyip.com) or if your pc only put 127.0.0.1";
$srvport = "6000 (leave it dont change )";
$mssql_user = "put sa here.. sa means server admin ";
$mssql_pass = "your db password";
$mssql_database = "GunzDB(your database name. GunzBD )";
$mssql_host = "your database ";<< put you db connection example
LI9HT/SQLEXPRESS li9ht is mypc name or
(yourIp)/SQLEXPRESS use this one.. never tried cause my server is on local network.. but it should work...
 
Upvote 0
Back