View file public_html/inc/connect.php

File size: 233B
<?php

$con = mysql_connect("localhost","adcafe_rj","passward");
if(!$con) {
die('sorry could not connect to database');
}

mysql_select_db("adcafe_rj", $con) or die('sorry could not connect to database');

require "config.php";

?>