form_get_errors
Definition
form_get_errors()
includes/form.inc, line 606
Description
Return an associative array of all errors.
Related topics
| Name | Description |
|---|---|
| Form generation | Functions to enable the processing and display of HTML forms. |
Code
<?php
function form_get_errors() {
$form = form_set_error();
if (!empty($form)) {
return $form;
}
}
?> 