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 11-09-2007, 01:25 PM
feyza's Avatar
Sergeant First Class
 
Join Date: Oct 2007
Location: Turkey, İzmir
Posts: 51
Exclamation What If More Than One Form?

Hey,

It was very useful to read here and then create a form. And it's great to see it's working...
I've created one form but I want to create more forms.I know I have to name the "action" page as "action".. But for more than one form how can I name the page as the same name? I can't use "action" for the others I think...It would be great if you can help me...
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 11-09-2007, 03:58 PM
Andy128's Avatar
Major General
 
Join Date: Dec 2005
Location: Michigan
Posts: 2,282
Default Re: What If More Than One Form?

Your action page that contains the php script to process the form, in certain instances, be used to process more than one form.

For instance, using this php script:
Quote:
<?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);
?>
This script can process many different forms. It is generic php script designed to take each key and value of each form field and mail it to your email address. Therefore you can have form1, form2 form3 form4 etc..... and each would be processed by the action.php page. So in each form, the action would indeed be set to action.php.

Hope that explains it.

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 11-09-2007, 07:12 PM
feyza's Avatar
Sergeant First Class
 
Join Date: Oct 2007
Location: Turkey, İzmir
Posts: 51
Default Re: What If More Than One Form?

Thanks Andy but I think I should be more clear so you can help me better.

The first step after creating a form page is opening a new page (that's thank you page) named "action" . Then In this page I copy and paste the script and give an e-mail adress in the "mailto:" area and subject to "mailsubj" area and so on..Save the page as "action" and close it.

Now for the second form, after creating the form page and save it;

(If wrong tell me the steps please)

*Open a new page and that's the "thank you" page..
*Then insert the html script and edit the e-mail adress and subject...
*And at last save the page as "action"

That's all I know...But I can't name the page cause there's already a page named "action"

I'm realy confused...
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 11-09-2007, 08:20 PM
Andy128's Avatar
Major General
 
Join Date: Dec 2005
Location: Michigan
Posts: 2,282
Default Re: What If More Than One Form?

Form1 going to email-1 action = action.php
copy php script into action.php page and change e-mail address to one you want sent to.

Now- if Form2 is also going to email-1........... then you could keep the action as action.php and it would utilize the same php script to process the info and send it along to you.

But if each Form's info is being sent to a seperate e-mail address, then we have to do something different. The easiest is to create a thankyou page for each form. Form1 .......action1.php, Form2..........action2.php, Form3.......action3.php etc.......

Then all you would have to do in each of the forms is match the action to the form.

Does that 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!)
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 11-09-2007, 08:26 PM
feyza's Avatar
Sergeant First Class
 
Join Date: Oct 2007
Location: Turkey, İzmir
Posts: 51
Default Re: What If More Than One Form?

Quote:
Originally Posted by Andy128 View Post
Form1 going to email-1 action = action.php
copy php script into action.php page and change e-mail address to one you want sent to.

Now- if Form2 is also going to email-1........... then you could keep the action as action.php and it would utilize the same php script to process the info and send it along to you.

But if each Form's info is being sent to a seperate e-mail address, then we have to do something different. The easiest is to create a thankyou page for each form. Form1 .......action1.php, Form2..........action2.php, Form3.......action3.php etc.......

Then all you would have to do in each of the forms is match the action to the form.

Does that help?

Andy

Yes,each Form's info is being sent to a seperate e-mail address...

Thank you, that is what I needed...I understand how to do it and I hope I can...I'll try it...

Thanx again...
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:37 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