Any help is great help!
I am a CF guy, and must create a php script that will loop thruough form fields and send the name value pair via email. Here is what I use in CF
this goes in the body of the cfmail call. how can I do the same in PHP. The field names are dynamic, nothing is set. However it is guarenteed that the fields contain valid names (no dashes, quotes, astricks, etc)
DeZiner
Never be afraid to try something new.
Remember that amateurs built the Ark.
Professionals built the Titanic
I am a CF guy, and must create a php script that will loop thruough form fields and send the name value pair via email. Here is what I use in CF
Code:
<cfloop index="fname" list="#form.fieldnames#">
#fname#: #Evaluate("form." & fname)#<br>
</cfloop>
DeZiner
Never be afraid to try something new.
Remember that amateurs built the Ark.
Professionals built the Titanic