I have a section on my form called "Personal Details" - the max length is set to 250. My database field is set to varchar(250). what happens if some how a user tries to upload 260 characters. What would happen (lets say that i have no JS or php validation... the only validation is the maxlenght in the form) so what would happen
If the maxlength of the field is set to 250, how could you receive longer length on the server anyway?
<form method="post" action="http://yourserver.com/yourscript.php"> <input type="text" name="somename" length="251" /> </form> Code (markup): Never trust user input