Home > Archive > PHP Language > May 2004 > multiple form in a page class
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
multiple form in a page class
|
|
| Vanessa 2004-05-20, 10:32 am |
| I am looking for a php class handling multiple forms within the same
page.
The class should be self contained : it should handle data
verification and error handling, while allowing the form to be
smoothly integrated within a page layout design.
I looked at hundreds of form classes and frameworks on the web, but
couldn't find any that would fit all of these simple requirements.
Thanks for any potential help or hints.
Vanessa
| |
| Lukas von Kirschmann 2004-05-20, 11:32 am |
| Du, Vanessa, hast folgendes geschrieben:
> I am looking for a php class handling multiple forms within the same
> page.
simply try the good old one:
HTML_QuickForm & HTML_QuickFormController
it is an addon for PEAR
You can find this @ http://pear.php.net
[Snipped]
HTH
--
mit freundlichen Grüßen
Lukas von Kirschmann
########################################
# This signature is under construction #
########################################
| |
| Vanessa 2004-05-21, 5:30 am |
| On Thu, 20 May 2004 14:44:55 +0000 (UTC), "Lukas von Kirschmann"
<muell@netcologne.de> declared :
[color=darkred]
>simply try the good old one:
>HTML_QuickForm & HTML_QuickFormController
Are you certain about that ? May I point out that I am definitely not
looking for multipage forms, the kind used to make wizards or
assistants.
I am looking for a php class and page layout framework allowing smooth
object oriented insertion of several, possibly different, forms within
the same page.
All of that while retaining the very desirable properties of a great
php class :
- self contained
- auto validation
- contextual error messages
- build in input types
- etc.
Does such a framework exists somewhere ? I did give a second look to
HTML_QuickForm, but it does not seem to fit my requirements, as I do
not see any mechanism to directly instantiate the correct form class
out of several in the same page, during the validation process.
HTML_QuickFormController also looks a lot like a _multipage_ wizard,
not a multiform page layout.
Vanessa
|
|
|
|
|