Search found 6 matches
- Wed Oct 05, 2005 4:20 pm
- Forum: PHP - Code
- Topic: [SOLVED] struggling with "Contact Form"
- Replies: 12
- Views: 420
finally!! It works!!!!!!!
here's a solution: <?php extract($_POST); //mail( "tgalofre@cacdhh.org", "Contact Form Submission", print_r($_POST,true) ); $Name = $_POST['Name'] ; $Email = $_POST['Email'] ; $Message = $_POST['Message'] ; $Phone = $_POST['Phone'] ; $Fax = $_POST['Fax'] ; if ( !$Email || !$Messa...
- Wed Oct 05, 2005 2:07 pm
- Forum: PHP - Code
- Topic: [SOLVED] struggling with "Contact Form"
- Replies: 12
- Views: 420
1 out of 2 works...
one of two things is working.... I get email(s) from contact form. one other thing remains...being transported to another page...this one have yet to happen. still seeing blank screen lately. here's latest PHP code: <?php //mail( "tgalofre@cacdhh.org", "Contact Form Submission", ...
- Wed Oct 05, 2005 12:26 pm
- Forum: PHP - Code
- Topic: [SOLVED] struggling with "Contact Form"
- Replies: 12
- Views: 420
so.. here's modified PHP code
<?php //mail( "tgalofre@cacdhh.org", "Contact Form Submission", print_r($_POST,true) ); extract($_POST) $Name = $_POST['Name'] ; $Email = $_POST['Email'] ; $Message = $_POST['Message'] ; $Phone = $_POST['Phone'] ; $Fax = $_POST['Fax'] ; if ( !$Email || !$Message ) { header( &quo...
- Wed Oct 05, 2005 11:31 am
- Forum: PHP - Code
- Topic: [SOLVED] struggling with "Contact Form"
- Replies: 12
- Views: 420
still see a blank screen again....
with some changes from the advices I got recently..here it is: <?php mail( "tgalofre@cacdhh.org", "Contact Form Submission", print_r($_POST,true) ); $Name = $_POST['Name'] ; $Email = $_POST['Email'] ; $Message = $_POST['Message'] ; $Phone = $_POST['Phone'] ; $Fax = $_POST['Fax'] ...
- Wed Oct 05, 2005 9:27 am
- Forum: PHP - Code
- Topic: [SOLVED] struggling with "Contact Form"
- Replies: 12
- Views: 420
still not working :-(
here's a portion of contactus.html: <div align="center" id="contactForm"> <FORM METHOD="post" ACTION="http://www.cacvrs.org/sendmail.php"> <input type=hidden name="required" value="Email,Name,Phone,Message "> <table width="542" bo...
- Tue Oct 04, 2005 4:39 pm
- Forum: PHP - Code
- Topic: [SOLVED] struggling with "Contact Form"
- Replies: 12
- Views: 420
[SOLVED] struggling with "Contact Form"
Hello! I'm new to this forum. Since I took an advice to make dynamic webpages by adding PHP to them, I've gone through some PHP tutorials. But I'm currently puzzled with this PHP project: contact form. Here's the portion of contactus.html: <FORM METHOD="post" ACTION="sendmail.php"...