Wenn ich XAMPP starte usw und auf die HP will (Regi seite) kommt das
Parse error: syntax error, unexpected T_EXIT in C:\xampp\htdocs\config.php on line 17
und hier ist mein config.php


Parse error: syntax error, unexpected T_EXIT in C:\xampp\htdocs\config.php on line 17
und hier ist mein config.php
könnt ihr mir bitte helfen ?Quote:
<?php
/*
|-------------------------------------------------------------------
| Datenbank Connection Details
|-------------------------------------------------------------------
*/
$mysql_host = "Non Pub";
$mysql_user = "Non Pub";
$mysql_pass = "Non Pub";
$mysql_db = "Non Pub";
/*
|-------------------------------------------------------------------
| Datenbank Verbindung herstellen
|-------------------------------------------------------------------
*/
mysql_connect($mysql_host, $mysql_user, $mysql_pass)
die("Es konnte keine Verbindung zur Datenbank hergestellt werden.<br /> Fehlermeldung:".mysql_error());
mysql_select_db($mysql_db)
die("Die Datenbank konnte nicht benutzt werden.<br /> Fehlermeldung:".mysql_error());
?>






