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 08-25-2007, 05:23 PM
Private First Class
 
Join Date: Aug 2007
Posts: 9
Default A few new questions

1. emails from my form do not include the file attachments. The file in indicated in the email and is in my upload folder however. Is this normal? Is possible to have the files attached to the email as well?

2. I cant get the field tab order to work in the form. I ahve tried the "move to front" approach several times but some are still out of order. I have saved, uploaded and refreshed the form each time. Any suggestions.

3. Is ther a way to add an autoincrementing field to the form?

4. Is there a search tool that I can put on the site so that users can search my one or more of my databases?

Thank to the community once again for any suggestions and help you can offer.

Burlington - client id 16875
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 08-25-2007, 06:30 PM
Watdaflip's Avatar
Brigadier General
 
Join Date: Sep 2005
Location: Cincinnati, Ohio
Posts: 1,638
Default Re: A few new questions

1) If your script to send the email isn't setup to send an attachment. It is possible, but like most things on a website, nothing is done automatically you have to tell it to do so.

2) IDK, I don't use BV, perhaps someone who does can help with that

3) What are you wanting to auto increment? Are you wanting a running count of how many times the form was submitted? Or for something else? Chances are it is possible, but the difficulty of what you want to do can range.

4) BV doesn't include any database features whatsoever that I am aware of. Pretty much any query to any database would be custom to that database, so theres no simple copy and paste, or click to add way of doing it.
__________________

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
  #3  
Old 08-25-2007, 09:19 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,342
Default Re: A few new questions

For attachments the only solution within this forum is Advanced BlueVoda Form Processor . It will attach as many files as you want.

Tab Order: The bring to Front is the only way. If it doesn't work for you, you CERTAINLY have made some mistake. If you make a mistake in the procedure, you need to start from scratch.
Your only other alternative: recreate the form, creating the fields in the order you like the TAB to work.

Yes, it is possible to have a an autoincrement value field, but not directly using BV, you will need to have a kind of counter using either a database or a flat file to store, each time, this value, so that the next one is simply incremented by 1. This is usually achieved with a php script. You will also need a small routine to make sure that not the same number is assigned if two users are opening and submitting the form page at the same moment.

Search: you can't do it using BV. You can do it using BV in conjunction with a php script that will perform the search and display the results. In that case BV can be used for the visual part.
__________________
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
  #4  
Old 08-25-2007, 10:42 PM
Private First Class
 
Join Date: Aug 2007
Posts: 9
Default Re: A few new questions

Thanks so far folks,

I think I found the tab order problem. Some items were slightly outside the form area when initally created and tested. Deleting and recreating them fixed the problem

navaldesign : I am using Advanced BlueVoda Form Processor but the attachments are not are not no the email. Do I need to load the more advanced script I saw referenced somewhere in the forum.

Any suggestion on where I can find samples of suitable scripts for my search and display results needs?

One additional question - Is it possible to have uploaded images saved in the database? If so please point me in the direction of information on how to achieve this.

Thanks 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
  #5  
Old 08-25-2007, 11:48 PM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,342
Default Re: A few new questions

Storing a file in the database is easy. You need to read the file content, and then store it in the database as any other normal variable. To read a file, use this code (which supposes that you have called your upload field "picture"):


$picture_Name[$i] = str_replace(" ", "_", $_FILES['picture']['name']);
$picture_Size[$i] = $_FILES['picture']['size'];
$picture_Temp[$i] = $_FILES['picture']['tmp_name'];

if( picture_Size > 0 ) {
$fp = fopen($picture_Temp, 'r');
$content = fread($fp, $picture_Temp);
fclose($fp);
$content = addslashes($content);
}

Then you can simply store the variable $content in a BLOB field in the database.
__________________
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
  #6  
Old 08-26-2007, 12:17 AM
Private First Class
 
Join Date: Aug 2007
Posts: 9
Default Re: A few new questions

Thanks again Navaldesign for the advice,

It seems clear that I could develop the functionallity I want from scratch however as the level of complexity goes up so will the learning curve I have to climb. Though I like the process of teaching myself new skills. The time involed will stretch too long. Your company dbtechnosystems can clearly build the functionallity I want.

How to I go about defining my needs so that your company can put together a quotation for me.

Thanks in advance.
I look forward to hearing from you.
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 08-26-2007, 12:27 AM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 9,342
Default Re: A few new questions

Please contact me privately. Thank you.

You can also have a look at a database search script here. The results in this case are NOT displayed as a page of links, but as a display (in pages) of the booths (this is a fleamarket application) which items contain the searched for terms. The script will ignore witespaces and "," 's.
__________________
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 02:59 AM.


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