Skip to content Skip to sidebar Skip to footer

Html Form Library For Php 5

I am looking for a QuickForm replacement. QF has performance issues with, for example, many options in combobox. I would also like something more object oriented, like Zend_Form, b

Solution 1:

You could try \Nette\Forms\Form, it's part of Nette Framework.

Documentation: http://doc.nette.org/en/forms

Solution 2:

A link to QuickForm wouldn't have killed you...

Anyway, I was looking for a system to generate forms and then save the result into a database. The following are some systems I found.

First system I found that did the sorts of things I wanted. But, doesn't do them quite how I want. Doesn't have import. Settings are stored in the db. Easy to change the settings using web interface. Easy to modify table. Can not create tables. Allows you to view multiple tables from the same interface easily. No multi-option. (Multi-choice.)

I then decided, what the hell, I would write my own, and I did. It isn't downloadable yet, but is in use.

Solution 3:

Solution 4:

you could try Zebra_Form - produces no error messages when error level is set to E_ALL, does both server- and client-side validation, has protection against cross-site scripting (XSS) attacks, protection against cross-site request forgery (CSRF) attacks, has spectacular documentation and it's easy to learn;

Solution 5:

Because you didn't specify, I'm assuming you aren't using QuickForm2, have you looked at this version of QuickForm?

http://pear.php.net/package/HTML_QuickForm2

Post a Comment for "Html Form Library For Php 5"