I am working on a php/mysql form and I have validation set for all of my input fields... do I need to validate the Hidden and the Submit fields? Thanks
if the values of those fields pose a potential security threat to your app then...yes you do.
Never trust incoming data => Validate everything or you may end up working with crap
thanks! I don't want to work with crap.. for sure.