Ah, just wondering if there is a more concise way of checking for blank variables that are passed via a form... soo lets say (just an example) I have the following field names that are passed.
name
password
confirm password
email
ALright, simple enough, now whats the easiest way of checking to see if any of those are blank? Currently I am doing a crappy if statement on all of them..
if(!$name || !$password || !$confirm_password || !$email) {
echo "Uh, not all filled out.<br>";
}
soooo I know there should be a better way... Any suggestions?