Using VB6, can anyone advise how to add data to tables in an access database via the internet. I can use appi's to check connections and ftp text files etc. I can connect to the database on the local machine :-

MyApp = "\test.mdb;"
myPath = App.Path
Password = "Uid=; Password = éøòðçìáú;"
strMode = "Mode=ReadWrite;Persist Security Info=False;"
strConnect = "Driver={Microsoft Access Driver (*.mdb)};Dbq=" _
& myPath & MyApp & strMode & Password
Set cnn1 = New ADODB.Connection
'connect to database
cnn1.Open strConnect

but I am puzzled how to connect via internet.

Can anyone shed some light?