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 04-01-2008, 01:16 PM
Sergeant First Class
 
Join Date: Mar 2008
Posts: 52
Default no html code

My programme was renewed by Hank this morning.

I have wiped out all I have done to start afresh. I can not still not get a form to work Have watched the tutorials for 4 weeks now.

Listening to the tutorial and reading it simultaneously It does not work for me.

1. I have no HTML code to be pasted that looks remotely like what the tuorial shows.

2. Where do I get this code?
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 04-01-2008, 01:20 PM
Sergeant First Class
 
Join Date: Mar 2008
Posts: 52
Default Re: no html code

This is all the code i have pasted from my site

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Information</title>
<meta name="GENERATOR" content="Created by BlueVoda">
<style type="text/css">
div#container
{
width: 700px;
position: relative;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
text-align: left;
}
body
{
text-align: center;
margin: 0;
}
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div id="container">
<div id="bv_" style="position:absolute;left:1px;top:0px;width:49 4px;height:458px;z-index:0" align="left">
<table width="100%" border="2" cellpadding="0" cellspacing="0" bordercolor="#8B0000" id="Table1">
<tr>
<td align="left" valign="top" width="490" height="454">&nbsp;</td>
</tr>
</table></div>
</div>
</body>
</html>

Is what need here?

Don't se anything which allows me to alter or fill in an email.

I am so sorry that I am posting again, but somehow it has to work.
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 04-01-2008, 03:59 PM
Watdaflip's Avatar
Brigadier General
 
Join Date: Sep 2005
Location: Cincinnati, Ohio
Posts: 1,643
Default Re: no html code

You are correct there is no form in that html code.

I am unsure as to what exactly the problem you are having. You just have to create the form in BV (its just a matter adding the form elements, should just be clicking a couple buttons).

There is no html code you have to paste, there is some php code you need to send the email, but that will go on a page other then the form.
__________________

Register/Login Script
Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script
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 04-01-2008, 05:44 PM
Sergeant First Class
 
Join Date: Mar 2008
Posts: 52
Default Re: no html code

Thanx for the feed back.
Is there anywhere I can get this code?
I am not familiar with code neither with most computer formailities or the technical jargon.
If any thing, at best I can cut and paste. I am happy to know that all my battles were not entirely due to my stupidity. I have for a few weeks been trying to create a form and have watched the videos so often, I can recite them of by pat!
What is my option please?
Bucks
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 04-01-2008, 06:26 PM
Watdaflip's Avatar
Brigadier General
 
Join Date: Sep 2005
Location: Cincinnati, Ohio
Posts: 1,643
Default Re: no html code

The code is about two thirds down the page in the tutorial
http://www.vodahost.com/vodatalk/for...-part-1-a.html

I'll copy and paste it here for you
Code:
<?PHP $mailto = "youremail@yourdomain.com"; $email = $HTTP_POST_VARS['email']; if ($email == "") { $email = $mailto; } $mailsubj = "Type your mail subject here"; $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); ?>
Make sure you scroll down, there is a whole lot more content in the tutorial. The tutorial covers making the form itself.

Basically think of it as input -> process -> output

The form is the input, its where the user fills in information, when they submit it goes to another page which will process the data entered (in this case send the email). Finally the output, it is usually on the same page (as in this case).

I hope that has made things a little clearer
__________________

Register/Login Script
Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script
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 04:46 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 54