Wednesday, 6 April 2016

isset() function

isset() function is used to check whether a variable is set or not.
Make a page isset.php in root folder.
$t1="VIRENDRA";
if(isset($t1))
{
   echo "Varible is Set";
}
else
{
  echo "Varible is Not Set";
}

0 comments:

Post a Comment