Click to See Complete Forum and Search --> : Sending form contant to E-mail, How? Simple question


toplisek
01-19-2006, 05:21 AM
I have code <form action="<?php echo $PHP_SELF; ?>" method="post" >

How to do that it will send to E-mail form content? :rolleyes:

sridhar_423
01-19-2006, 05:24 AM
in the next page use the function mail($username, $subject, $matter,"From: $from")); to send the mail in a text format.

toplisek
01-19-2006, 06:21 AM
I have thanks page when user sends form data. How to remember content from base page where is FORM?

chazzy
01-19-2006, 06:26 AM
on the next page, you just take the values in the POST array.

toplisek
01-19-2006, 07:21 AM
Thanks I will do