summaryrefslogtreecommitdiff
path: root/default-conf/var_www_includes/config_db.php
blob: b49e5e0c90db9f8fcf23bbcd4f85ad5ae51418e4 (plain)
1
2
3
4
5
6
<?php
include("../include/funktion_db.php");

$con = mysql_connect("localhost", "root", "changeme") or die ("connection failed");
$sel = mysql_select_db("tabel") or die (mysql_error());
?>