i have a problem with forms

@deaxor (11)
Finland
December 6, 2006 11:54am CST
i am trying to do a form which will send the result of it to mysql database + to my own e-mail. the database is not so important, but that it will come to my own e-mail that is important. so can some body please help me????
1 person likes this
2 responses
@dundern (246)
• Finland
7 Dec 06
i cant post it to mylot since it is too much text or something but go to http://www.newdawn.z42.us/form.html and check how it is done it is exactly the post i was about to send but something goes wrong with mylot so i did set it up there :)
1 person likes this
@sebbie (7)
• Poland
21 Mar 07
HTML: [form action="your_php_script.php" method="post"] [label for="example"]Example[/label] [input id="example" name="example" type="text" /] [/form] PHP (your_php_script): $example = $_POST['example']; mail("your@mail.com", "Subject", $example");