mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
a654718211
git-svn-id: https://svn.fhem.de/fhem/trunk@1546 2b470e98-0d58-463d-a4d8-8e2adae1ed80
17 lines
273 B
PHP
17 lines
273 B
PHP
<?php
|
|
|
|
##DB-Functions for pgm3
|
|
|
|
include "config.php";
|
|
|
|
|
|
|
|
### If DB-query is used, this is the only point of connect. ###
|
|
if ($DBUse=="1") {
|
|
@mysql_connect($DBNode, $DBUser, $DBPass) or die("Can't connect");
|
|
@mysql_select_db($DBName) or die("No database found");
|
|
}
|
|
|
|
|
|
?>
|