Hello,
if($username=="") {
$login_domain_error="Enter User Name";
}
if(isset($_POST['passwd'])) {
$login_p_error="Enter Password";
When I enter the above two validation, it triggers the validation errors, without form submission using PHP
What exactly is wrong
Thanks Jean