![]() |
|
| |||||||
| Notices |
| Adding Elements To Your Website Discussions, help & troubleshooting about adding templates, backgrounds, images, text, iframes, scroll bars, marquees, flash, video, music, HTML Code, shapes, lines, java scripts, and all other elements. Etc… etc… |
![]() |
| | LinkBack | Thread Tools |
|
#2
| ||||
| ||||
| Quote:
__________________ The moment one definitely commits oneself, then providence moves too. All sorts of things occur to help one that would never otherwise have occurred. A whole stream of events issues from the decisions, raising in one’s favor all manner of unforeseen incidents and meetings and material assistance which no man could have dreamed would have come his way. Whatever you can do or dream you can, begin it. Boldness has genius, power and magic in it. Begin it now. (William Hutchinson Murray) |
|
#3
| ||||
| ||||
|
cheryl- Here is a step-by-step tutorial; http://netisopen.com/computer/TF001/T001.html This type of mail-to form is independent and does not require an opening of ones e-mail program to send a message. Post back if you have any questions. Andy
__________________ My diamond in the rough - www.123gpp.com * Click here for some BV tutorials (Php mailto Form, I-Frames, Picture display and much, much more!) |
|
#4
| ||||
| ||||
| Quote:
__________________ The moment one definitely commits oneself, then providence moves too. All sorts of things occur to help one that would never otherwise have occurred. A whole stream of events issues from the decisions, raising in one’s favor all manner of unforeseen incidents and meetings and material assistance which no man could have dreamed would have come his way. Whatever you can do or dream you can, begin it. Boldness has genius, power and magic in it. Begin it now. (William Hutchinson Murray) |
|
#5
| ||||
| ||||
|
Evening Amanda- Not a problem- thanks for the kind words about the tutorials. We'll see ya on the web! Andy
__________________ My diamond in the rough - www.123gpp.com * Click here for some BV tutorials (Php mailto Form, I-Frames, Picture display and much, much more!) |
|
#7
| |||
| |||
|
Hi Andy thanks for the step by step tutorial you gave me and I followed is as best I could however I published the 2 pages, the Contact page with no problem but when I click on the submit button it is not going into my email page, which is working with my domain email address, and my thank you page. I have published my thank you page successfully. I have not made a link on my home page to my thank you page only to my contact page. When I look in the FTP it shows thankyou.php and contact.html which is what you said it should show so what am I doing wrong...?? When I publish my thank you page should it be published with htm?. I am a bit confused having the two pages, since I don't have a clue what I am doing and I am not experienced in creating a website you are helping me lots... Many Thanks Cheryl |
|
#8
| ||||
| ||||
|
Cheryl- You are quite welcome. Post your URL and I will have a look at it. Until then, double check these; 1. Is your submit button inside the form? 2. Is the form action set to your thankyou.php? 3. Did you name the field(element) that you have them put their E-mail address ( email ) and not e-mail Andy
__________________ My diamond in the rough - www.123gpp.com * Click here for some BV tutorials (Php mailto Form, I-Frames, Picture display and much, much more!) |
|
#10
| ||||
| ||||
|
Cheryly- Your contact page is setp up perfect. The thankyou.php is not found. I have a feeling that you saved it as a text or something. Open notepad and open your Thankyou page. Click save as. Now go down to where you see "Save as type" and open that box and sellect "all files". Then where it asks you to name the file inthe "file name" box type- thankyou.php and save it in your BV folder somwhere. Now "X" out that and go to the BV webbuilding program and open it- choose a blank page. Now open and connect via the FTP Manager. Click on your thankyou.php file and upload it to your public_html folder. That should be it and take care of the problem. If you wish- cilck on my profile and send me the thankyou.php file and I will have a look at it also. But I feel that the only problem is that it wasn't saved as a php file. Cheers (post back if need help ) Andy
__________________ My diamond in the rough - www.123gpp.com * Click here for some BV tutorials (Php mailto Form, I-Frames, Picture display and much, much more!) |
|
#11
| ||||
| ||||
|
Cheryl- Disregard my last post as I was thinking of the FIELD VALIDATION tutorial which has a seperate php page. But it is fairly the same. Your thankyou page where you put the php script in the "Body Tag" needs to be saved as php. So- click on page properties and select the extension as php. Save-close and publish. I believe this may take care of the problem. IF not - post back as I will be up late tonight and will help all I can. Sorry to have confused you with the other post. Andy
__________________ My diamond in the rough - www.123gpp.com * Click here for some BV tutorials (Php mailto Form, I-Frames, Picture display and much, much more!) |
|
#13
| ||||
| ||||
|
Glad to help Cheryl- Have a great week and I'll see yaon the web! Andy
__________________ My diamond in the rough - www.123gpp.com * Click here for some BV tutorials (Php mailto Form, I-Frames, Picture display and much, much more!) |
|
#14
| ||||
| ||||
| Quote:
|
|
#15
| |||
| |||
|
Hi everyone, I was wondering if I could get some help. Everything seems to be setup right, but it doesnt send the email. This is my current website: http://www.cobrasbistro.com/contact.html my contact.php has: Code: <HTML>
<HEAD>
<TITLE>Succesfully processed your order</TITLE>
</HEAD>
<BODY>
<H2>Thanks for your order!</H2>
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "*************.com";
$mailsubj = "Testing Contact Form";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
$mailbody .= "$key : $val\n";
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
?>
</BODY>
</HTML> |
|
#16
| ||||
| ||||
| Quote:
The reason is that your e-mail field on the form is named mail- the php script is looking for email to put in as the mailhead. Andy
__________________ My diamond in the rough - www.123gpp.com * Click here for some BV tutorials (Php mailto Form, I-Frames, Picture display and much, much more!) |
|
#18
| ||||
| ||||
|
Have you checked your spam folder? Sometimes (as has been reported) the mail ends up in the spam folder. Andy
__________________ My diamond in the rough - www.123gpp.com * Click here for some BV tutorials (Php mailto Form, I-Frames, Picture display and much, much more!) |