Multi-page Forms

Permalink
I am interested in using Concrete5 for a site I will be developing very soon. My client will be needing some large forms on the site. Would it be possible to create multi-page forms with C5?

flywithhim
 
andrew replied on at Permalink Reply
andrew
The way that C5 would handle something like this is probably with what we call a "single page."

These are one-off, special pages, coded in PHP, that also have a back-end "controller" component that maps to different actions that might happen on the front-end of a page. You'd create a form by hand in your single page template, and submit it to an action function, which is then automatically run in the controller. (This is not the best documentation of how these actually work.)

This is a pretty good introduction:
http://www.concrete5.org/index.php?cID=273...

Now, this isn't an automated form building tool or anything like that, it's really just a syntax for integrating custom PHP code and stuff into your c5 applications..

Does this help at all?