Click here to Skip to main content
15,921,226 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I use jquery validate validation in form.

without adding full form data not saved. and no further proceedings.
but somehow some time while checking MySQL table all fields are null.(user registration)

there are lots of fields in a form...and all are mandatory.

so how to intensely hack or prevent validation.

What I have tried:

I try debugging and check all chase. but on local all working fine.
Posted
Updated 30-Jan-18 4:20am

The user can turn off Javascript. Or they can submit data to your server using an HTML file on their local computer, where your Javascript won't get a chance to execute.

Any validation you perform on the client must always be performed on the server as well.
 
Share this answer
 
Take your pick. Disabled javascript, remove the javascript, submit their own form programatically (spammers are likely to be doing this), exploit weaknesses in the javascript by entering fields with only spaces.

Javascript validation is nice to have, but server-side validation is mandatory.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900