View file public_html/inc/connect.php
<?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";
?>