Reputation: 447
I have been using php from some time and I have noticed that it takes a long time to create a form with validation using php. Are there any scripts or IDE wizards which can assist a programmer to create php forms quickly and also give the programmer flexibility to customize the form easily? I found some webservices which provide such services but they are mostly oriented towards non-programmers and the forms they generate are not easily customizable and do not support all kinds of functionalities. Infact, most of them are meant for generating contact forms.
Regards, Akshey
Upvotes: 2
Views: 411
Reputation: 16390
I have found symfony framework very useful. Checck the starting tutorial here http://www.symfony-project.org/jobeet/1_4/Doctrine/en/ You can fnd libraries for many common tasks.
Upvotes: 3
Reputation: 27099
Many code libraries, such as Zend Framework or Code Igniter, are built to handle this sort of thing. Are you using any library at the moment, or coding by hand?
Looking at PEAR for a moment, I also see that they have a QuickForm module.
Upvotes: 5