Source Code:
(back to article)
<?php $variable = "some value"; if ($variable !== null) { echo "The variable is set to: " . $variable; } else { echo "The variable is not set"; }
Result:
Report an issue