Web Hosting Vodahost    

Home Take The Royal Tour! Order Now Features Prices
Go Back   Web Hosting > BlueVoda Website Builder Forums > Forms

Notices

Forms Discussion and help related to designing and implementing forms in the BlueVoda Website Builder.

Reply
 
LinkBack Thread Tools
  #1  
Old 06-19-2006, 05:24 AM
Jeremy's Avatar
jbellefeuille.com
 
Join Date: Apr 2006
Location: The true north, strong and free
Posts: 1,549
Send a message via MSN to Jeremy Send a message via Yahoo to Jeremy Send a message via Skype™ to Jeremy
Exclamation Form Problems

Hey!

For some reason I havn't been able to get my forms to send to my inbox at (support@bwservices.ca) ... I have tried since May to get my forms to redirect to (http://www.bwservices.ca/Thank you.html) aswell and that hasnt worked either.

Here is the html code pasted below. If anyone can help me out that would be great!

<style>
body,td,legend {
color: black;
font-family: Century Gothic;
font-size: 14px;
}
span.required{
font-size: 13px;
color: red;
}
</style>

<script language="php">
$email = $HTTP_POST_VARS[email];
$mailto = "
jeremy_bellefeuille********.com";
$mailsubj = "BW SERVICES - 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"; }
if (!eregi("\n",$HTTP_POST_VARS[email])) { mail($mailto, $mailsubj, $mailbody, $mailhead); }
?>
<table width="520" cellpadding="5" cellspacing="0">
<tr valign="bottom">
<td width="150" valign="bottom" >
<label for="q0">Company</label>
</td>
<td valign="bottom">
<input type="text" size="20" name="q0_Company" id="q0">
</td>
</tr>
</table>

<table width="520" cellpadding="5" cellspacing="0">
<tr valign="bottom">
<td width="150" valign="bottom" >
<label for="q2">Title</label>
</td>
<td valign="bottom">
<input type="text" size="20" name="q2_Title" id="q2">
</td>
</tr>
</table>

<table width="520" cellpadding="5" cellspacing="0">
<tr valign="bottom">
<td width="150" valign="bottom" >
<label for="q3">Name <span class="required">*</span></label>
</td>
<td valign="bottom">
<input type="text" size="20" name="q3_Name" id="q3">
</td>
</tr>
</table>

<table width="520" cellpadding="5" cellspacing="0">
<tr valign="bottom">
<td width="150" valign="bottom" >
<label for="q4">Last Name <span class="required">*</span></label>
</td>
<td valign="bottom">
<input type="text" size="20" name="q4_LastName" id="q4">
</td>
</tr>
</table>

<table width="520" cellpadding="5" cellspacing="0">
<tr valign="bottom">
<td width="150" valign="bottom" >
<label for="q5">E-mail <span class="required">*</span></label>
</td>
<td valign="bottom">
<input type="text" size="20" name="q5_E-mail" id="q5">
</td>
</tr>
</table>

<table width="520" cellpadding="5" cellspacing="0">
<tr valign="bottom">
<td width="150" valign="bottom" >
<label for="q6">Phone Number <span class="required">*</span></label>
</td>
<td valign="bottom">
<input type="text" size="20" name="q6_PhoneNumber" id="q6">
</td>
</tr>
</table>

<table width="520" cellpadding="5" cellspacing="0">
<tr valign="bottom">
<td width="150" valign="top" >
<label for="q7">Message <span class="required">*</span></label>
</td>
<td valign="bottom">
<textarea wrap="soft" cols="30" rows="3" name="q7_Message" id="q7"></textarea>
</td>
</tr>
</table>

<table width="520" cellpadding="5" cellspacing="0">
<tr valign="bottom">
<td width="150" valign="bottom" >
<label for="q8">How did you hear about us?</label>
</td>
<td valign="bottom">
<input type="text" size="20" name="q8_Howdidyouhearaboutus" id="q8">
</td>
</tr>
</table>
<table width="520" cellpadding="5" cellspacing="0">
<tr valign="bottom">
<td width="150" valign="bottom" >

</td>
<td valign="bottom">
<input TYPE="submit" VALUE="Submit"><input TYPE="reset">
</td>
</tr>
</table>

</form>

___________

Thank you.
Jeremy.

www.bwservices.ca/
Black & White Designs
__________________
Best Regards,
Jeremy

www.jbellefeuille.com
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 06-19-2006, 06:40 AM
Andy128's Avatar
Major General
 
Join Date: Dec 2005
Location: Michigan
Posts: 2,282
Default Re: Form Problems

I do not see your form in what you have posted. But- check out the link below on how to set up a php mailto form.

http://netisopen.com/computer/TF001/T001.html

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!)
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 06-19-2006, 06:47 AM
beegud2's Avatar
Major General
 
Join Date: Apr 2006
Location: Jamaica
Posts: 2,196
Default Re: Form Problems

Hi Jeremy,

I looked on what I had and compared to yours and you seem to be missing this header("Location: confirmationpage.html"); in the last part of your code which reads
</style>
<script language="php">
$email = $HTTP_POST_VARS[email];
$mailto = "jeremy_bellefeuille********.com";
$mailsubj = "BW SERVICES - 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"; }
if (!eregi("\n",$HTTP_POST_VARS[email])) { mail($mailto, $mailsubj, $mailbody, $mailhead); }
?>
I think you need to fill in here...try it out and see what happens.

Just a stupid question but do you have a confirmation page php....you might be calling it something else. Andy has a tutorial on it....but I here the new form maker pro does it quite nicely..if you want to do over.

bzzz

Sorry no help on the e-mail part of it.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old 06-19-2006, 08:41 AM
VodaHost's Avatar
General & Forum Administrator
 
Join Date: Mar 2005
Location: Wilmington, Delaware USA
Posts: 8,579
Default Re: Form Problems

moving to form section.
__________________
VodaHost
Your Website People!
1-302-283-3777 North America / International
07092887580 / United Kingdom

Military Ranking System Explained


Click Here to take the royal VodaHost Tour
Click Here for the VodaHost Help Centre & Tutorials
Got a question? - Try a forum search! Available at the top of every page!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old 06-19-2006, 11:54 AM
davidundalicia's Avatar
General & Forum Moderator
 
Join Date: Mar 2006
Location: Mallorca, Spain
Posts: 5,287
Default Re: Form Problems

Contact Us
to our offical Canadian technical support team.

The above is the heading on your Contact page.

I strongly suggest that you read and digest andy´s tutorial and then pass on the info to your technical support team.

You might also want to view the various threads on Page sizes as yours seem to stretch to far to the right resulting in the user having to scroll.

I mention these points because design is not just about putting pages up on the web......

Good Luck.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old 06-19-2006, 01:03 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,357
Default Re: Form Problems

You have various issues here.
1. You are missing the <form> opening tag
2. You have the processing script in your form page. It must be in your thankyou or confirmation page.
3. You have created the form with some other program? not BV?
4. As it is created, it looks like this other program passes your email address to the script(cgiemail) by means of a hidden field. It also passes through a number of other parameters, so my guess is that this form requires cgiemail to worl properly.


I suggest that you re-do it, following Andy's instructions.
__________________
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


Last edited by navaldesign; 06-19-2006 at 01:28 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old 06-19-2006, 04:49 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,357
Default Re: Form Problems

Hi, click here to see your form functioning: http://www.navaldesign.info/Tips/bw/contact_us.html . if you submit, you will also receivr the email. Then, if you like, i'll send you the .bvp pages, so you will only have to publish them.
__________________
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old 06-19-2006, 10:42 PM
Jeremy's Avatar
jbellefeuille.com
 
Join Date: Apr 2006
Location: The true north, strong and free
Posts: 1,549
Send a message via MSN to Jeremy Send a message via Yahoo to Jeremy Send a message via Skype™ to Jeremy
Default Re: Form Problems

Quote:
Originally Posted by navaldesign
Hi, click here to see your form functioning: http://www.navaldesign.info/Tips/bw/contact_us.html . if you submit, you will also receivr the email. Then, if you like, i'll send you the .bvp pages, so you will only have to publish them.
Hey navaldesign!

I see what you have done with the form and I really like it, and I appreciate you taking the time for this and all other people. If you can please send me the .bvp page that would be wonderful!!

Thanks.
__________________
Best Regards,
Jeremy

www.jbellefeuille.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old 06-19-2006, 10:52 PM
Jeremy's Avatar
jbellefeuille.com
 
Join Date: Apr 2006
Location: The true north, strong and free
Posts: 1,549
Send a message via MSN to Jeremy Send a message via Yahoo to Jeremy Send a message via Skype™ to Jeremy
Post Re: Form Problems

Hey!

Thanks for all your help, and I do appreciate you guys criticizing my website ... someone also mentioned that you have to scroll left and right on my website. The reason for that is that I am building my website with a very large screen there for people who have small screens have to scroll.

... thank you for letting me know, I will be working on that shortly.

Thanks.
__________________
Best Regards,
Jeremy

www.jbellefeuille.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old 06-19-2006, 10:53 PM
Jeremy's Avatar
jbellefeuille.com
 
Join Date: Apr 2006
Location: The true north, strong and free
Posts: 1,549
Send a message via MSN to Jeremy Send a message via Yahoo to Jeremy Send a message via Skype™ to Jeremy
Default Re: Form Problems

Hey!

I would also like to know if Form Maker Pro 4 is free for all VodaHost customers. Because I have followed instructions on installing the program but can not figure out how.

Thanks.
__________________
Best Regards,
Jeremy

www.jbellefeuille.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #11  
Old 06-19-2006, 11:41 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,357
Default Re: Form Problems

Quote:
Originally Posted by Jeremy
Hey navaldesign!

I see what you have done with the form and I really like it, and I appreciate you taking the time for this and all other people. If you can please send me the .bvp page that would be wonderful!!

Thanks.
I will, tomorrow morning, from Office, where i have the files i made for you.. It's midnight here and time for bed.
__________________
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!

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 11:42 PM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC7
2005-2009 VodaHost Web Hosting Your Perfect Web Host - 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176