Hi there.
I got several forms and I'm using one singel php script for the mail processing.
Now I have the following problem:
One Form got one text input field and another one got two, three or four text input fields. In ASP it works that way:
For Each Item In Request.Form
CLP = CLP & Item & ": " & Request.Form(Item) & vbCrLf
I need something similar in php which goes through the whole form and checks for textinput items which are added to the body of the mail.
Can anybody help me out?
Thanks!