View Single Post
  #8  
Old 10-07-2004, 05:48 AM
govtcheeze
Hill Giant
 
Join Date: Mar 2004
Location: South Florida
Posts: 247
Default

What was the problem you had? Error message? Blank screen?

You need to replace the line quoted above with something like the following:

Code:
  $userid = "YOUR SQL USERNAME";
  $password = "YOUR SQL PASSWORD";
  $dbname = "YOUR DATABASE NAME";
  $domain = "localhost";

  mysql_connect("$domain","$userid","$password");
  mysql_select_db("$dbname") or die(mysql_error());
__________________
GovtCheeze, Welfare Warrior
"Listen, here's the thing. If you can't spot the sucker in the first half hour at the table, then you ARE the sucker." -- Mike McDermott, Rounders

Developer of the original (circa 2004):
Loots v2.0, bitch!
Faction v1.0, bitch!
Magelo-like clone v0.3, bitch!
Zone geometry and spawn/path viewer, bitch!
Reply With Quote