Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Making a site

Skilled Illusionist
Joined
Nov 26, 2006
Messages
310
Reaction score
20
I got everything up and running with wamp, but I'm stuck at connecting.

PHP:
$mssql_user = "sa";
$mssql_pass = "*****";
$mssql_database = "GunZDB";
$mssql_host = "POP-NVGO60RPW0P\SQLEXPRESS";

$conn = mssql_connect($mssql_host, $mssql_user, $mssql_pass) or die("");
mssql_select_db($mssql_database) or die("");
Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: POP-NVGO60RPW0P\SQLEXPRESS in C:\wamp\www\reg.php on line 10

What do I do to get it to connect? I've tried every user and pass combo possible, none give results.

edit: By the way, I've tried both wamp and AppServ.
 
Custom Title Activated
Loyal Member
Joined
Nov 5, 2006
Messages
1,358
Reaction score
15
have you tried no user and no pass ?
 
Upvote 0
Back
Top