0 Janice posted What is Isset PHP ? isset(); what is use of isset() function in php ? What is Isset() function in PHP ? Edit Question
0 chirag answered Jul 18 '21 00:00 isset() function is used to check wheather variable exists or not if(isset($today)){ echo $today; } isset() function mostly used for the if condition for checking the variable exists or not to avoid the some error . Edit Answer