Forum Moderators: coopster
Unfortunately, we are switching hosts, and I need to do this through PHP. Is this possible? If so, where do I go for information on this? I'm not even sure what it's called, so it's hard to even search for the info...
Thanks for all your help!
Search for "file write" in the online documentation... It should give you some initial pointers.
where do I go for information on this
You are already here!
Is this possible?
With php anything is possible. ;)
The be all end all resource for php is [php.net...]
You could use fopen [php.net] to open the csv file you want to write to
fwrite [php.net] to write the values passed from the form to that file
if your form is using the post method then the values passed from your form will be available in the $_POST [php.net] superglobal associative array
you must then create the email message from those same variables/values and put it into the mail [php.net] function.
That is a pretty basic overview but I hope that helps you get started at least. Then you can post questions as/if you run into obstacles.