Source Code:
(back to article)
<?php $name = "John"; if ($name != "Jane") { die("Access denied!"); } echo "Welcome, $name!";
Result:
Report an issue