engelsystem/default-conf/var_www_includes/config_db.php

7 lines
189 B
PHP
Raw Normal View History

<?php
2011-06-01 14:30:29 +02:00
include("../include/funktion_db.php");
$con = mysql_connect("localhost", "root", "changeme") or die ("connection failed");
$sel = mysql_select_db("tabel") or die (mysql_error());
?>