I would like to make sure that there are no empty fields. I would like to add
if (! strlen($_POST['first_name']))
{
print 'Please enter your first name.';
}
but I am not sure where to add it. any help would be appreciated.
Thanks.
<?php
//Turn on sessions
session_start();
//Find what...