I found out that even if you declare a column in a table in mysql as NOT NULL
it would still allow you to insert an empty string. ''.
how can I prevent this from happening in mysql?
I can always make the check in php, but, I want it to be in both ends.
Thank you in advance guys


