Web Hosting Talk







View Full Version : Possible with PHP


pammyg
12-22-2003, 06:19 PM
Hi, would something like this be possible with PHP???

Basically there is a form, the user fills out this form, the contents are sent in an e-mail, and then the variables are written to a file in a specific location...

Am i way off base with the capabilities of php?

DeltaAnime
12-22-2003, 06:25 PM
PHP has no problem doing such a thing, since it's done all the time :)

~Francisco

brendandonhu
12-22-2003, 07:09 PM
This is pretty simple with PHP.

You would probably use mail() to send the email and functions like fopen(), fwrite() and fclose() to write to the file.