Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Jun 1st, 2007, 11:48 AM   #1
ITcon
Newbie
 
Join Date: May 2007
Posts: 1
Rep Power: 0 ITcon is on a distinguished road
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!
ITcon is offline   Reply With Quote
Old Jun 1st, 2007, 2:09 PM   #2
ReggaetonKing
Sexy Programmer
 
ReggaetonKing's Avatar
 
Join Date: Nov 2005
Location: New Jersey
Posts: 891
Rep Power: 3 ReggaetonKing is on a distinguished road
Send a message via AIM to ReggaetonKing
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!
ReggaetonKing is offline   Reply With Quote
Old Jun 1st, 2007, 3:29 PM   #3
Infinite Recursion
Programming Guru
 
Infinite Recursion's Avatar
 
Join Date: Jul 2004
Location: United States
Posts: 3,467
Rep Power: 8 Infinite Recursion is on a distinguished road
Send a message via MSN to Infinite Recursion Send a message via Yahoo to Infinite Recursion
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."
Infinite Recursion is offline   Reply With Quote
Old Jul 12th, 2007, 8:50 AM   #4
shyampc
Newbie
 
Join Date: May 2007
Posts: 1
Rep Power: 0 shyampc is on a distinguished road
Can someone offer some example projects on various contact forms? I am using a free one with their advertisement.
__________________
Thanks,
www.MaxGXL.com|MaxGxl glutathione
shyampc is offline   Reply With Quote
Old Aug 21st, 2007, 12:21 AM   #5
Kelvoron
Programmer
 
Kelvoron's Avatar
 
Join Date: Aug 2007
Location: Ohio
Posts: 46
Rep Power: 0 Kelvoron is on a distinguished road
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.
Kelvoron is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

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




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 12:54 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC