I am trying out the php ODBC connection with Access 2000, made by Siddarth Venkatesan (as found in phpbuilder). Appearantly, you need a system DSN to make the connection in the code below:
$cnx = odbc_connect( 'DSN' , "$user", "$pass" );
I am 'serving' my MS Access 2000 database on the same windows 2000 system where I have my apache server. If I use a system DNS for identification, it does not matter what username or password you enter, you always get in! How can you really secure this ODBC connection?
Thanx
Johan
$cnx = odbc_connect( 'DSN' , "$user", "$pass" );
I am 'serving' my MS Access 2000 database on the same windows 2000 system where I have my apache server. If I use a system DNS for identification, it does not matter what username or password you enter, you always get in! How can you really secure this ODBC connection?
Thanx
Johan