Web Hosting Vodahost    

Home Take The Royal Tour! Order Now Features Prices
Go Back   Web Hosting > VodaHost Web Hosting Support > General Support Issues

Notices

General Support Issues Answers to general questions and help with common problems. For help with a specific issue, post to one of the forums below.

Reply
 
LinkBack Thread Tools
  #1  
Old 05-16-2008, 07:49 AM
Sergeant
 
Join Date: Apr 2008
Location: south africa
Posts: 23
Default Help with the thank you page please

Hi Folks

I'm very new to site building but I've managed to build a series of pages and then plan to link them together and go live etc............BUT when I follow the instructions on how to build the thank for you contacting us page, I get stuck where it tells me to copy, paste and alter the coding.

It tells me to alter the e-mail address etc in the code, but the part that's shown in the instructions isn't there in the code I copy and paste...... Can someone out there tell me if I'm missing something or if I need to go live before it'll work, or if I'm just having a blonde moment?

Thanks in advance!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old 05-16-2008, 09:26 AM
Corporal
 
Join Date: May 2008
Location: Spain
Posts: 15
Post Re: Help with the thank you page please

Hi.........I'm very new to this too, but I had the same problem so hopefully I can help you, below is the text you need to paste in between the head tag. You just change the detail of your mail address (as i've shown in blue) and the contact form submission can probably stay the same, if that's what its for.

I also changed over to the Bv version 10D which has helped and I'm sure I read that if you have that version there should be no need to cut and paste the text. I've added the links for BV 10D for you at the bottom.

hope it helps:)


<?PHP
$mailto = "youremailaddress";
$email = $HTTP_POST_VARS['email'];
if ($email == "") {
$email = $mailto;
}
$mailsubj = "contact form 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))
{
if ($key!="submit")
{
$mailbody .= "$key : $val\n";
}
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
?>
=====================



Click Here to Download BlueVoda 10.0 D (Zipped Version)

Click Here to Download BlueVoda 10.0 D (Un-Zipped Version)
__________________
morairabandb.co.uk
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old 05-16-2008, 09:39 AM
Sergeant
 
Join Date: Apr 2008
Location: south africa
Posts: 23
Default Re: Help with the thank you page please

Thanks, I'll give it a try!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply


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

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
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT +1. The time now is 01:42 AM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC7
2007 VodaHost.com - All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53