Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,151,929 members, 7,814,153 topics. Date: Wednesday, 01 May 2024 at 07:51 AM

Best Approach To Implement "A Multi Step Database Driven Registration Forms" - Webmasters - Nairaland

Nairaland Forum / Science/Technology / Webmasters / Best Approach To Implement "A Multi Step Database Driven Registration Forms" (1472 Views)

Design Database Driven Websites & Android Mobile Apps No Coding Skill Required / Attention Dual Core - Will Ube Interested In Dsigning A Database Driven Website? / Learn how to Build A Database-driven Web Site Using Php And Mysql here (2) (3) (4)

(1) (Reply) (Go Down)

Best Approach To Implement "A Multi Step Database Driven Registration Forms" by tundewoods(m): 6:13pm On Feb 28, 2008
I'm working on a php mysql web portal that involves developing a number of advanced web to database forms that requires dividing online forms to be filled by users into steps such as done by popular online job recruiting applications.

Now this is not really much of a problem as i have 2 approaches that can be used to implement this,What i need is advice from fellow developers that have embarked on such step by step web to database forms.

Approach 1

I actually intended to have a my initial form which is part 1 to actually collect the data from the fields and pass them to  SESSION VARIABLES to store then until we get to the  final step after content has been confirmed and have the stored session variable inserted to the database via a hidden variables.

Approach 2

This approach involves intially sending the data in the form part 1 to the database, however the part 2 will actually be an update sql query that will show the 2nd set of fields that were omitted step 1 so as to collect the data and update the table,please note that this approach will involve using the mysql_insert_id(); function.

The fact is that all the data will be actually passed into the same database table however the fields are quite a lot therefore we have to break the form into 3 parts and also enable the users to confirm their entry.

The last part of  the form has the an image upload field which seems a bit tasking and makes me to favor the second approach over the first one.

If you have however had worked on such an advanced web to database form please share your advice.
Re: Best Approach To Implement "A Multi Step Database Driven Registration Forms" by prodgalson: 9:54pm On Feb 28, 2008
Hope all is well.

#2 is less favorable design.

- On the web, there are high application abandonment rates.
-Because of this you should assume that 60% of the site's users will complete #1, and drop off before completion.
-This will undoubtedly lead to extra rows in what could be an otherwise clean database
-This in turn would slow down DB operations which, even if by milliseconds, is not desirable

In general, you want to limit DB traffic, and make calls only when necessary. Having the over head of an extra call is not desirable from a user experience point of view (longer page load, even if slight), and performance (high DB concurrency -with lots of users- will lead to a drop in overall performance)

Even if you foresee the site having only 20 visitors a year, good architecture has scalability in mind.


Question: Why are you concerned with the image upload? Sending the image alone versus sending the image+form text over the wire will have negligible difference ( plain text is a light load ).

Here's a fun analogy, If you're carrying a heavy box from the house to the car, it makes little difference if you put some books on top.
Re: Best Approach To Implement "A Multi Step Database Driven Registration Forms" by my2cents(m): 10:05pm On Feb 28, 2008
I have done something similar with a real estate site I did last year, complete with image upload. It might not be the best approach but I would say:

Based on experience, i would go with the first approach. I don't know much about DBs but I would imagine that updates are expensive operations. Besides, instead of continuously updating, y not just insert once, especially, if you anticipate a heavy user population?

The part of your first approach that gives me goose bumps is the session variables part. I would just pass the field vars as hidden form fields, unless you want a situation where if the person leaves the site and returns, the values are still saved. In ASP (back in 2001 when I touched it last, so it might have changed since then) and JSP I know session vars are "expensive" and would imagine the same with PHP. Since you are using POST (I assume) for the form action, the form field values are stored and can be passed via hidden fields.

Now, where we might differ is this:
What I did was, after collecting the form fields, I inserted the values in the database, then provided a link, with the property's unique id, to the image upload page (/imageUpload.php?prop_id=Bleep, for example. So I basically had 2 steps - one for collecting data and two for uploading the image(s)). All the upload did was create a directory with the property's unique id as its name and insert the image(s) in that directory. That way, technically, I am not even storing links to the images in the DB. The links are in the code and in the code, I just hardcode the image path up until where I need to dynamically add the name of the directory (which again, is the unique id of the property).

I hope this makes sense and I hope this helps. Bottomline: again, based on experience, go with approach 1.
Re: Best Approach To Implement "A Multi Step Database Driven Registration Forms" by Afam(m): 10:19pm On Feb 28, 2008
Single step is faster and easier to handle.
Re: Best Approach To Implement "A Multi Step Database Driven Registration Forms" by tundewoods(m): 10:41am On Feb 29, 2008
@ Prodgalson

Thanks for sharing your experience,I now see more clearly the dangers in Approach 2.

@ my2cents

Big up i see that you too fall on the same side of the jury convicting option 2.

@ Afam

I know implementing a single step for is easier and faster,but trust me if one is in rome,he must behave like romans.

I am simply building the forms similar to the way the reference real estate listing web portals  have their own forms.
Re: Best Approach To Implement "A Multi Step Database Driven Registration Forms" by smartsoft(m): 4:50pm On Feb 29, 2008
i go with AFAM, a single form will be good. despite the fact that some of this wite ppl who build a website like Dating website uses what you intend in using, but i will prefer single to multiple
Re: Best Approach To Implement "A Multi Step Database Driven Registration Forms" by my2cents(m): 4:57pm On Feb 29, 2008
and smart:
what happens if there are 100 fields? I am expected to scroll to oblivion? From a usability standpoint, that isn't good. Rather, you should see what fields go naturally together and then group them together. To aid in the process, you can then offer a progress bar (step 1 of 5 - user information, for example).

I think that is better than one long form, where applicable of course.
Re: Best Approach To Implement "A Multi Step Database Driven Registration Forms" by tundewoods(m): 5:26pm On Feb 29, 2008
My2cents,can you see that some of my people here in nairaland are not willing to develop or horn their skills,no disrespect to anybody but web development is not about just sticking to othordox or rudimentary methods of implementing or developing web apps.

For all the folks in support of a single step web to database form,just as my2cents has rightly pointed out what if you have a database form with a million fields ?

Point is that in web development you all must be ready to break out of the norm and go the extra mile.

Trust me multi step froms can be much fun,in fact i'm begining to enjoy the approach 1, which i am currently using to develop a 5 step web to database form.
Re: Best Approach To Implement "A Multi Step Database Driven Registration Forms" by my2cents(m): 5:53pm On Feb 29, 2008
To me, in order not to lose people like me, it's all about usability and keeping me engaged through the process, irrespective of steps. I am very impatient. If an application process or whatever goes beyond 2 steps, I get angry. However, if there are some visual cues to let me know how much longer I have to go, I am willing to forgive. Here is an example on a site that is based in Nigeria. Bottomline, from a usability standpoint, it's the best way to go, as long as you inform the user where they are and how much longer they have to go:

Just visit https://www.virginnigeria.com/en/ng/bookflightsandmore/bookflights/index.jsp for an example.
Re: Best Approach To Implement "A Multi Step Database Driven Registration Forms" by Afam(m): 8:30pm On Feb 29, 2008
I am finding it difficult to understand why using a single step is old fashioned, I had thought it was an improvement from the old way of filling forms especially when people did not know how to integrate an upload field in a typical form based system and would rather have more than one step.

If you believe what makes you a better developer is for you to have 5 or even 10 steps go ahead, fact remains that more people will abandon the process when faced with multiple processes, it is not about whether we agree with this or not because you cannot argue with facts.

To begin with, who will be setting up a system that requires a million fields or even thousand fields or even hundred fields? No body, at least not an online application where people are not ready to waste time.

A simple, clear single step form submission system is a winner any day, let us not us our inability to achieve a task as a basis to rubbish those that can achieve such tasks faster and more efficiently.

This is why I hardly comment on issues like this one because before you know it it boils down to people trying to outshine or outdo others.

Una goodluck abeg.
Re: Best Approach To Implement "A Multi Step Database Driven Registration Forms" by bakenda(m): 7:18pm On Mar 01, 2008
You may just build the form to receive only the
login details and a few essential fields at first.
Then when the users login they can fill the rest of the
form at any convenient time.Or may be I didnt get your
picture right.When i work with multistage forms,i usually
use location headers to go from page to page and pass any
variable i need to pass via the query string or hidden form fields.

(1) (Reply)

How To Connect Nokia Pc Suit On Vista With Nokia N73 / -- / Jamb Website 2012 Registration Wahala!

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 33
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.