I want to know what is different between isset()
and !empty
?
I know that isset()
tests if a variable is set and not null, while
empty()
can return true when the variable is set to certain values.
But logically when isset()
which doesn't empty (without using "empty()"), there is a variable in text or textarea whatever so we don't need empty()
.