Hello
I have a form that INSERTS new users into a database. I also have a second form that UPDATES the users. The UPDATE form correctly generates an error if the value you try to add to a non numeric value to a field that is set to integer. However, the INSERT form will allow any value to be added to the field and just sets it to 0.
How can I create an error message and prevent the INSERT if a none numeric value is given in the form field that should only allow integers?
Thank you!