Re: [PHP] How to structure code for forms

2008-06-08 Thread Larry Garfield
Going full-blown MVC (a rather lousy web architecture that most people get wrong) for just simple form handling is serious overkill. The form itself is fully encapulated within the View (the user interaction part), and should *not* directly relate to the model. I personally am rather fond of

Re: [PHP] How to structure code for forms

2008-06-08 Thread Nitsan Bin-Nun
Exectly, I fall in love with zend_form but you can use cakephp or joomla and etc HTH On 08/06/2008, Nirmalya Lahiri <[EMAIL PROTECTED]> wrote: > > --- On Sun, 6/8/08, Ethan Whitt <[EMAIL PROTECTED]> wrote: > > > From: Ethan Whitt <[EMAIL PROTECTED]> > > Subject: [PHP] How to structure code for f

Re: [PHP] How to structure code for forms

2008-06-08 Thread Nirmalya Lahiri
--- On Sun, 6/8/08, Ethan Whitt <[EMAIL PROTECTED]> wrote: > From: Ethan Whitt <[EMAIL PROTECTED]> > Subject: [PHP] How to structure code for forms > To: php-general@lists.php.net > Date: Sunday, June 8, 2008, 4:31 PM > I am new to PHP and have been researching ways to structure > code for forms.