![]() |
|
| |||||||
| Notices |
| BlueVoda - General Issues All BlueVoda support issues that are not covered in the below forums. |
![]() |
| | LinkBack | Thread Tools |
|
#1
| ||||
| ||||
|
Can someone help me to add a line to this script that enables the user to return to my home page after submitting? This is how my php page currently reads, and where it says "Your Story has been submitted. Thank you." I'd like a link to return to the index.html page. My site is www.lifeatfifty.com. Thank you. <HTML> <HEAD> <TITLE>Succesfully Submitted</TITLE> </HEAD> <BODY> <H2>Your Story has been submitted. Thank you.</H2> <?PHP $email = $HTTP_POST_VARS[email]; $mailto = "lifestories@lifeatfifty.com"; $mailsubj = "Life Stories Submission"; $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> </HEAD> |
|
#2
| ||||
| ||||
| <META HTTP-EQUIV="Refresh" Content="5; URL=index.html"> Paste this after your code. You can change the redirect time in the code. it currently stands at 5secs see the RED section above. hope this helps |
|
#3
| ||||
| ||||
|
Thank you Ruth, that worked great! Quote:
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Affiliate Track Software (script) | VodaHost | eBusiness and Concept Development Talk | 8 | 01-12-2006 03:07 PM |
| Please help with my PHP script | wgreene | mySQL & PHP | 1 | 10-07-2005 01:14 AM |
| Java script problems | cdenton1234 | BlueVoda - General Issues | 1 | 07-22-2005 08:06 AM |
| long script | vinny1957 | Adding Elements To Your Website | 1 | 06-22-2005 12:29 AM |
| java script box | vinny1957 | BlueVoda - General Issues | 5 | 06-17-2005 09:20 AM |