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

In PHP 8 an unknown named parameter error occurs with file uploads The reason and fix: in zebra-form.php, line 2434 actions array has this value (when uploading a file) `...

Hello, I just started using Zebra_Forms. I'm using it in Wordpress and I've installed it via composer by adding: ``` { "require": { "stefangabos/zebra_form" : "*" } } ``` to...

There is an error in zebra_form.php in the _validate_dependencies function This line: ` if ($control_properties->attributes['name'] == $proxy && ($control_properties->attributes['type'] == 'radio' || $control_properties->attributes['name'] == 'checkbox')) {` should be ` if...

Hi there, Whilst I'm trying to figure out what's not working on the coding - I've seen there's a bit of coding issue on your documentation under the add_error() section....

It seems when you use the form render without using template and you have both form and coding before generating the form it causes a duplicate/time out issue which is...

Getting a php error on the xssclean.php file at lines 285 and 286 "The /e modifier is deprecated, use preg_replace_callback instead " 285: $str = preg_replace('~&#x(0*[0-9a-f]{2,5})~ei', 'chr(hexdec("\\1"))', $str); suggest it...

Hi! I'm trying to render custom error template for each field but this error block template is hardcoded: `$this->errors[$error_block] = '' . $content . 'close';` It's a nice functionality and...

isset and !isset is not working because the $tmp date values are set to false. Replace with !empty and empty Ex if (!empty($tmp_start_date)) = false because ($tmp_start_date = $this->_is_format_valid($this->attributes['direction'][0])) function...

After latest update by jasondegn (5/23/17) to zebraform.php - the template files displaying forms aren't lining up correctly, especially with radio buttons and notes are not lining up as they...

When running the example, the form is not styled, JavaScript validation does not work. I think the culprit is in the initialization of the `Zebra_Form` class where `$attributes` are (by...