![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Newbie
Join Date: May 2007
Posts: 1
Rep Power: 0
![]() |
Contact form
Hello everyone!
I have a little question to ask.. It`s safe to use a remote contact form like www.emailmeform.com ? Thanks in advance! |
|
|
|
|
|
#2 |
|
Sexy Programmer
|
Why not write your own. Its a lot easier than you think!
__________________
I would love to change the world, but they won't give me the source code! |
|
|
|
|
|
#3 |
|
Programming Guru
![]() ![]() ![]() |
I agree with reggaeton_king... It would be better to write your own.
Forms are -incredibly simple- to write. When the data hits the third party, you can't ensure its integrity, etc. You can only watch it to the door... never what goes on behind the door or what happens to the data after the transaction is complete. Some asses are in business to obtain and distribute personal information like phone numbers, addresses, etc.
__________________
http://jasonpowers.net "There are a thousand hacking at the branches of evil to one who is striking at the root." |
|
|
|
|
|
#4 |
|
Newbie
Join Date: May 2007
Posts: 1
Rep Power: 0
![]() |
Can someone offer some example projects on various contact forms? I am using a free one with their advertisement.
|
|
|
|
|
|
#5 |
|
Programmer
Join Date: Aug 2007
Location: Ohio
Posts: 46
Rep Power: 0
![]() |
firstly make sure your host supports PHP if it dosent go here: http://cp1.runhosting.com
then try this save as: Home.XHTML <Form method="post" action="sendmail.PHP"> Email: <input name="email" type="text" /> <br /> Message:<br /> <textarea name="message" rows="15" cols="40"> </textarea> <br /> <input type="submit" value="submit"><br /> </form> Save as: sendmail.PHP <-- make sure that this file is exacly the same as the one you use in the action part above or it will not run. make sure you replace yourMail@yourhost.com with your email address. <?
$email = $_REQUEST['email'];
$message = $_REQUEST['message'];
mail( "yourMail@yourhost.com", "Feedback Form Results",
$message, "From: $email");
header( "Location: http://americanvideo.mywebcommunity.org/");
?>
__________________
Good better best, never let it rest, untill your good is better and your better is the best. |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| FFT DWTIB -> Optimization -> Choosing An Appropriate Run Time | Sane | Software Design and Algorithms | 7 | Dec 1st, 2006 10:40 AM |
| Show or hiding forms/modifying control properties ..from different a form.. | cloud- | C# | 4 | Nov 10th, 2006 10:51 AM |
| Form Submit Blues | MegaArcon | Python | 3 | Dec 14th, 2005 4:20 PM |
| .NET Timer Form closing issue | MBirchmeier | C# | 4 | Nov 21st, 2005 10:00 AM |
| entering data into excel from a form | glevine | Perl | 1 | Nov 18th, 2005 5:03 PM |