top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

what is the use of isset() in php?

–1 vote
319 views
what is the use of isset() in php?
posted Mar 13, 2017 by Kavyashree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

isset() function

The isset () function is used to check whether a variable is set or not. If a variable is already unset with unset() function, it will no longer be set. The isset() function return false if testing variable contains a NULL value.
Syntax
isset(variable1, variable2......)
enter image description here

answer May 2, 2017 by Pooja Singh
...