We'll be converting a fairly long lease application form into a web application for submission via PHP in to a PostgreSQL database.
I abide by the maxim "Normalize till it hurts, then denormalize till it works" (Attr:SQLMenace) but as I jump in I figured I'd tap the collective mind.
Here is what the paper form currently looks like: http://www.borgermanagement.com/forms/commercialApplication.pdf (not the actual form but close)
A lot of the data is mandatory and will be submitted over a couple of views with the option to save a partially completed application for completion at a later date. The submitted application will be reviewed for approval (preferably in one view similar to the pdf). There isn't likely to be much in-depth analysis of the data down the road.
How would you structure your data in this case? To normalize or not? To vertically partition or not?