Hi All!

I'm trying to connect to an Access-database with the help of DBCommand()

This line works:
Code:
 $dbconn = 'DRIVER={Microsoft Access Driver (*.mdb)}; UID=; PWD=; DBQ=c:\database.mdb' 


But this don't:
Code:
 $dbconn = 'DRIVER={Microsoft Access Driver (*.mdb)}; UID=; PWD=; DBQ=http://www.someadress.com/database.mdb' 



If I don't use http:// I get "can't connect to (unknown)", and if I use it I get "File unknown".
If I write the adress in IE I get a save-prompt, so the file exists.

I'm guessing it's the formating of the adress, but I can't figure it out.