View file config.php

File size: 327B
<?

$host = "localhost";

$username = "doremont_re";

$password = "s4lsab1la";	

$dbname = "doremont_do";



$connection = mysql_connect($host,$username,$password);

if (!$connection)

  {

  die('Could not connect: ' . mysql_error());

  }

mysql_select_db($dbname) or die(mysql_error());

mysql_query("SET NAMES utf8");



?>