You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cats/includes/db_connect.inc.template

24 lines
676 B
Plaintext

<?php
$_SESSION['_config']['normalhostname'] = "HOSTNAME";
$_SESSION['_config']['securehostname'] = "HOSTNAME";
$_SESSION['_config']['folder'] = "";
// Variablen intialisieren für MySQL
// Do not change variable names, other scripts are parsing this file for them!
$host=":/var/run/mysqld/mysqld.sock";
$user="DB-USER";
$password="DB-PASSWORD";
$database="DATABASE";
// Stellt Verbindung mit DB her oder gibt Meldung aus
if (!mysql_connect($host,$user,$password)){
echo 'Keine Verbindung zur Datenbank möglich';
exit;
}
// Wählt DB aus oder gibt Meldung aus
mysql_select_db("$database") or die
("Die Datenbank existiert nicht");
?>