16 lines
453 B
PHP
16 lines
453 B
PHP
<?php
|
|
###############################################
|
|
# Website Database Configuration
|
|
# This file contains the database connection
|
|
# settings for the _website standalone site.
|
|
#
|
|
# These settings should match the panel's
|
|
# database configuration in includes/config.inc.php
|
|
###############################################
|
|
$db_host="localhost";
|
|
$db_user="localuser";
|
|
$db_pass="Pkloyn7yvpht!";
|
|
$db_name="panel";
|
|
$table_prefix="ogp_";
|
|
$db_type="mysql";
|
|
?>
|