ok. molte grazie ora funziona il response.write, ma vorrei a questo punto fare un UPDATE sul db, ho provato così ma mi aggiorna tutti i campi con il primo valore dell'array![]()
Codice PHP:str = oRst("email")
str = replace(str,"<","")
str = replace(str,">","")
arr_str = split(str," ")
for xElem = 0 to Ubound(arr_str)
if InStr(arr_str(xElem), "@") > 0 Then
'response.write(trim(arr_str(xElem)) &"
")
strSQL = "UPDATE newsletter set email = '" & arr_Str(xElem) & "'"
oConn.execute strSQL
else
End if
next

Rispondi quotando