30 8 / 2012

Good article regarding isset() and empty(). I would recommend avoid using empty() if possible and instead use strlen() for checking for empty string or array. Reason being non-assigned variables or empty assigned variables, both give the same result. I recommend you to read the article to understand when to use the isset() and empty() functions.