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!

[Help] php with sql 2005 doesnt work

Newbie Spellweaver
Joined
Mar 17, 2007
Messages
74
Reaction score
0
hello guys...
can you tell me why all my php scripts doesnt work anymore on mysql 2005...they worked on 2000 but not on 2005 -.- why!?

engel86


ps: the server is running but not the php scripts^^
 
Custom Title Activated
Loyal Member
Joined
Oct 6, 2006
Messages
1,490
Reaction score
3
because you can't write localhost in the connection line
you have:
Code:
$msconnect = mssql_connect("localhost","sa","PW")

but you nedd to do:
Code:
$msconnect = mssql_connect("SERVER_NAME","sa","PW")
 
Upvote 0
http://kalserverace.com
Loyal Member
Joined
Sep 12, 2006
Messages
477
Reaction score
17
OR if your useing Xampp there is a DLL file that is out-dated. dont ask what file it is i just know its a .dll... xD sorry
 
Upvote 0
Back
Top