20 lines
402 B
PHP
20 lines
402 B
PHP
<?php
|
|
/**
|
|
* This file is used for connecting to the database and configuring the superuser password
|
|
* Rename this file to config.php to make it take effect
|
|
*/
|
|
|
|
# database server name
|
|
$db_server = "localhost";
|
|
|
|
# database server port (default = 3306)
|
|
$db_port = "3306";
|
|
|
|
# database name
|
|
$db_database = "sentri";
|
|
|
|
# database user
|
|
$db_user = "sentri";
|
|
|
|
# Database password
|
|
$db_password = "db-password"; |