I can not for the life of me figure out why I am getting the above error code. here is my php. 1000 thank yous to whoever can solve this:
<?php
 function emptyInputSignup($name, $email, $username, $pwd, $pwdRepeat) {
$result;
if (empty($name) || empty($email) || empty($username) || empty($pwd) ||   empty($pwdRepeat))
  $result = true;
}
else {
  $result = false;
}
return $result;
}
 
    