What is the difference between isset and empty function in PHP
What is the difference between isset and empty function in PHP
1 Answer
The isset()
function returns TRUE if the variable is set and is not NULL.
but the empty()
function return TRUE if the variable is empty.
answer Link