What is the differences between isset() and unset() functions

What is the differences between isset() and unset() functions

isset(): using this method we can check whether the variable is set with value or              not. If variable is set with value this method returns true.

unset(): using this method we can remove the value of a variable

Share this post