php - In where shall I use isset() and !empty() - Stack Overflow
isset vs. !empty FTA: "isset() checks if a variable has a value including ( False , 0 , or empty string) , but not NULL. Returns TRUE if var exists; FALSE otherwise. On the other hand the empty() function checks if the variable has an empty value empty st...