RE: PHP problem
I mean when you set this in say config.php (or similar). Then the mysql_connect function takes the variables from the config file.
$db="yourdatabase"; //database
mysql_connect ($db, $user,...
You need to define info or it will not be able to login to the MySQL server.
The script wont know where to get it's data from!!!
|