So i'm using an html form. How can I have an error message come up when nothing is typed in any of the inputs?
I know PHP and would rather use something like
if ($_POST['first_name'] = NULL) {
echo "You didn't type a first name"
}
or something like that.
Thanx in advance!