|
|
- <?PHP
-
- // copy to db.live.php and change login credentials
- // and or
- // copy to db.dev.php and change login credentials for developement
- //and set the link to dev or live db at db.inc.php
-
-
- // The host name of your MySQL installation:
- // $hostName = "localhost"; // e.g.: "localhost"
- $hostName = "my.sql.server.com";
-
- $databaseName = "literature";
- // The name of the MySQL user that's going to be used with your MySQL
- // literature database:
- // Note: - this user should be a separate MySQL user (different from the
- // user that has full administrative privileges like the root user!)
- // - if there's no existing MySQL user with the specified name,
- // the 'install.php' script will create this user for you
- // $username = "litwww"; // e.g.: "litwww"
- $username = "refdbuser";
- // The password by which the above MySQL user will be granted access to
- // your MySQL literature database:
- // $password = "%l1t3ratur3?"; // e.g.: "%l1t3ratur3?"
- $password = "secretpassword";
-
-
- ?>
|