<?
include ("generalconfig.php");
/* Database Information - Required!! */
/* -- Configure the Variables Below --*/
$dbhost = ("$hhost");
$dbusername = ("$loggodatabase");
$dbpasswd = ("$pardordb");
$database_name = ("$nomedatabase");
$sitepath = ("$fullpathslash"); // full path to your site including http://
// and trailing slash
$sitename = ("$nomesito");
$adminemail = ("$emailadmin");
/* Database Stuff, do not modify below this line */
$connection = mysql_pconnect("$dbhost","$dbusername","$dbpasswd")
or die ("Couldn't connect to server.");
$db = mysql_select_db("$database_name", $connection)
or die("Couldn't select database.");
?>