Hi, can someone tell my why the following code populates the 'EmailRecipient' field with only the content of 'i'?
-------------
for i=1 to 4
EmailRecipient = request("EmailRecipient")
EmailRecipient = EmailRecipient & i ' required
i = i + 1
'
'
'
next
--------------
This is a portion of an email a friend page with several entries for recipients and their email addresses. 'EmailRecipient' is supposed to contain the email address of each of the entries.
~ lahddah
-------------
for i=1 to 4
EmailRecipient = request("EmailRecipient")
EmailRecipient = EmailRecipient & i ' required
i = i + 1
'
'
'
next
--------------
This is a portion of an email a friend page with several entries for recipients and their email addresses. 'EmailRecipient' is supposed to contain the email address of each of the entries.
~ lahddah