| strlen tells the length of the string. isset tells only if the variable has been defined. I don't want to process a login if the variable is set - it could be empty. I only want to process the login if the the user actually entered something, so I check to make sure that the string is not empty. |