Form validation: Difference between revisions

From Joomla! Documentation

No edit summary
Wilsonge (talk | contribs)
m English tweaks
Line 2: Line 2:
<translate><!--T:1-->
<translate><!--T:1-->
Joomla has client-side and server-side form validation capabilities.<br/>
Joomla has client-side and server-side form validation capabilities.<br/>
Server side validation is the minimum since everything before that can be overridden on the user side. But client-side is the most user-friendly one, so using both is not a bad idea (especially since the latter is unobtrusive and won't give problems on javascript-disabled or -problematic client browsers).</translate>
Server side validation is essential since everything before that can be overridden on the user side by hackers. However client-side is the most user-friendly validation, so using both is considered best practice.</translate>


<translate>==Client-side validation== <!--T:2--></translate>
<translate>==Client-side validation== <!--T:2--></translate>

Revision as of 22:44, 29 March 2020

Joomla has client-side and server-side form validation capabilities.
Server side validation is essential since everything before that can be overridden on the user side by hackers. However client-side is the most user-friendly validation, so using both is considered best practice.

Client-side validation

.. is done via javascript while the user is filling in the form fields.
It uses the HTML classes required and validate-[xxx] (with [xxx] being a joomla or custom rule; e.g. validate-numeric)

More here: Client-side form validation

Server-side validation

.. is done after having submitted the form and will normally return to the form when not validated with some extra messages.
It uses the HTML attributes required ("true" or "required") and validate (with value being a joomla or custom rule; e.g. validate="email")

More here: Server-side form validation