ciao ho questo problema:
vorrei poter mettere al posto di "_1" un numero che si incrementa in automatico ad ogni passaggio quindi risulterà nomesito_1 nomesito_2 ecc.. qualcuno mi potrebbe aiutare?Codice PHP:
<%
Set rs = Server.CreateObject("ADODB.Recordset")
sql="SELECT * FROM tabella where visualizza=true ORDER BY id DESC"
rs.open sql, objConn, 3, 3
do until rs.eof
Response.Write("&nomesito_1="&(rs("titolo"))&"&")%>
<%
rs.movenext
loop
rs.close
set rs=nothing %>
![]()
![]()