<?php
if (!defined("include")) {
header ($_SERVER["SERVER_PROTOCOL"]." 404 Not Found", true, 404);
die;
}
I want to include this file, as if it's not included, it should send browser 404 Not Found
and end executing script (without true and 404 doesn't work either). While Opera fools itself, Firefox doesn't. It shows just super-empty document (not 404, but also not even standard CSS stylesheet). How do I successfully send "404 Not Found" to ALL browser. How do I do this successfully?