Hi folks!

Più che un errore ho il problema che con qsto codice che ho fatto:
Codice PHP:
<select  name="ID_Richiesta">         <% SQL"SELECT * FROM TBL_RICHIESTE where ID_Anagrafica="IDANA &" order by Data_richiesta DESC"         Set RSCONTATTI Server.CreateObject("ADODB.Recordset")         RSCONTATTI.Open sqloConn33         RSCONTATTI.MoveFirst         Do While Not RSCONTATTI.EOF %>         <option value=<% = RSCONTATTI("ID_Richiesta")%>><% = RSCONTATTI("ID_Richiesta")%>.<%=RSCONTATTI("Data_richiesta")%>.<%=RSCONTATTI("Ora_richiesta")%>.<%=RSCONTATTI("Cognome_referente")%>.<%=RSCONTATTI("Nome_referente")%>         </option>         <% RSCONTATTI.MoveNext         Loop          RSCONTATTI.Close         set RSCONTATTI Nothing %> </select
ID_Richiesta qlsiasi option scelgo dal meni e invio rimane nullo (anche se il record esiste)

Dov'è l'errore?

JK