I need some tips on protecting PHP user registration form i creating from overflow e.g. hacker submits specific strings that are too long and overflows etc.
On HTML form i created length 20-30, 50 max for input textarea, but can disable this using e.g. firebug debugger for firefox just edit code and remove maxchars part from tag.
I think i need to make php check whatever string is 30 chars length for certain field and only then process registration if all fields match orig size, but is that all i can do or there are some other steps i can take to make sure?
Also i got upload image field and upload small video, is this too much security flaw and should be removed?