DEV Community

Discussion on: Input Validation: Client-side or Server-side?

Collapse
 
akashkava profile image
Akash Kava

Client side validation is only helpful to save roundtrip to server to perform simple validations. Basically save costly cpu resource and bandwidth of server, and save time of user.

Server side validation is must, hackers will try all sort of combinations to bring down server, steal information.