View file public_html/admin/config.php

File size: 204B
<?php

$bd_host = "localhost";
$bd_user = "...";
$bd_password = "...";
$bd_base = "...";
$url = "...";
$con = mysql_connect($bd_host, $bd_user, $bd_password); mysql_select_db($bd_base, $con);

?>