mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
10 lines
228 B
PHP
10 lines
228 B
PHP
<?php
|
|
include ('../cis2/config.inc.php');
|
|
require_once('raumtyp.class.php');
|
|
// Verbindung aufbauen
|
|
$conn=pg_pconnect(CONN_STRING) or die ("Unable to connect to SQL-Server");
|
|
echo 'test';
|
|
|
|
$test=new raumtyp($conn);
|
|
?>
|