Hola
Ya para conectarme a un ODBC lo hago de la siguentwe forma
Código PHP:
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "nombreODBC"
sSQL = "SELECT * FROM tabla"
set RS = Conn.Execute(sSQL)
If Not RS.EOF Then
End if
RS.Close
Set RS = Nothing
Conn.Close
Saludos
Leo