Zebra_Form icon indicating copy to clipboard operation
Zebra_Form copied to clipboard

A jQuery augmented PHP library for creating secure HTML forms and validating them easily

Results 20 Zebra_Form issues
Sort by recently updated
recently updated
newest added

I am using this library with WordPress theme. When I try to render form it is giving me following error. ``` Warning: Cannot modify header information - headers already sent...

There are cases where the generated captcha image url is wrong hence the captcha img not showing. The form_properties['assets_url'] which is used to construct the url might be broken. In...

Non-array control attributes are concatenated with a space delimiter. This caused me some problems where I would end up with multiple occurrences of some attribute values. Added some checking to...

We needed descriptive popup text for each option in some Select controls. This adds the "titles" attribute to Select(). Titles for options within an option group is supported.

I have a page with almost 800 controls -- it's a list editor as shown in the attachment (I sent an image of the page by separate email.) About half...

I have my own event handlers attached to a form input -- for example, to update a calculated display value. If plugin.init adds a wrapper (such as for 'inside', 'prefix'...

The jQuery function noConflict() removes the global references to jQuery so that you can safely use multiple versions of jQuery on a single page (multiple jQuery libraries is a necessary...

Link error message to a spesific field same as clientside validation $form = new Zebra_Form('my_form'); $obj = $form->add('text', 'my_text'); if ($form->validate()) { if ((int)$_POST['my_text']) < 1 || (int)$_POST['my_text']) > 10)...

Hello ! I achieve to include the colorpicker control and jscolor script ( http://jscolor.com/ ) to Zebra_Form. It works well but It could be improved. The main class is Colorpicker.php...

Hello stefangabos ! First of all, I want to thank you for your great work. I know your library for almost a year and use it on a few projects,...