C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\gridtip\gridtip-ng\dbconnect.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?

########################################################################
#                                       #
#    DB-Zugriff                                  #
#                                       #
########################################################################

#---listbox_field()-function only work under establish mysql connection

function dbconnect(){

    
mysql_pconnect("localhost""admin""mscmks71s11f132n") or die("Unable to connect to SQL server");
    
mysql_select_db("niki") or die("Unable to select database");
}

?>