ejemplo sencillo
Código PHP:
'definicion de variables
dim conexion, RS, SQL, query, strcxn
'creacion de objetos
set conexion = server.createobject("ADODB")
'definicion de ruta de DB y Query
StrCxn = "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE="
StrCxn = StrCxn & server.MapPath("./datos.mdb;")
campos="campo1, campo2, campo3, campo4"
query = "SELECT " & campos & " FROM tabla;"
'abrimos la conexion
conexion.open strcxn
ejecutamos la sentencia
set RS= conexion.execute(query)
if Err=0 then
if RS.EOF=true then%>
<select><%
while rs.EOF=false
response.Write "<option value=" & rs.field.item("campo1").value &_
">" & rs.field.item("campo2").value & "</option>"
wend
%></select><%
else
response.write "No se encontraron datos"
end if
else
response.write "Existe un error, consulte a su administrador"
end if
rs.close
set rs=nothing
set conexion=nothingrs.close
set rs=nothing
set conexion=nothing

que le falta???