If you have older scripts, you may encounter warning messages such as “Notice: Undefined variable: ”
As a standard practice, you should define variables in PHP by putting in the variable name = FALSE;
$myvar = FALSE;
This is primarily for local variable names that aren’t passed in through a $_REQUEST or $_POST, etc.