From e6ad1df619a2af2a902e19d14c6dac006c66a15a Mon Sep 17 00:00:00 2001 From: Alexey Petrovsky Date: Tue, 3 Jul 2018 16:52:47 +0300 Subject: [PATCH] Fix typo #876 --- en/04.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/04.2.md b/en/04.2.md index 8456c842..cb618900 100644 --- a/en/04.2.md +++ b/en/04.2.md @@ -1,6 +1,6 @@ # 4.2 Verification of inputs -One of the most important principles in web development is that you cannot trust anything from client side user forms. You have to validate all incoming data before use it. Many websites are affected by this problem, which is simple yet crucial. +One of the most important principles in web development is that you cannot trust anything from client side user forms. You have to validate all incoming data before using it. Many websites are affected by this problem, which is simple yet crucial. There are two ways of verifying form data that are in common use. The first is JavaScript validation on the front-end, and the second is server validation on the back-end. In this section, we are going to talk about server side validation in web development.