I'm having this error and am not sure what's causing it. I'm using PHP/MySQL and 
Apache on Windows XP.

I've looked at my server, user, password settings and they seem to be accurate, but 
the error seems to indicate this is the problem.

Any help would be appreciated.
___________________________________________________________________________________________________________________
PHP Warning:  mysql_select_db(): supplied argument is not a valid MySQL-Link resource 
in c:\phpdev\www\development\phpflash\init.php on line 44

Here's the init.php info

// THIS IS THE LOCAL CONFIGURATION 
 $server = "localhost";
 $user = "wsj3";
 $pass = "wsjJHB";
 $dbname = "central_user_db";

 /*
  Active email,  Insert, Delete, Update
 */

 $email = true;
 $onlySelect = false;
 $onlyFromUrl = false;
 
 /*
  Don't touch
 */

 $conectar_id= mysql_connect($server, $user, $pass);   <-- LINE 44
 mysql_select_db($dbname, $conectar_id);

Reply via email to