उन फ़ाइलों तक पहुंच को अवरुद्ध करने के लिए जो दूसरों में शामिल हैं और जिन्हें सीधे एक्सेस नहीं किया जाना चाहिए:इसे सीधे एक्सेस किए गए पृष्ठों में जोड़ें, जैसे index.php:
//This will prevent loading the included scripts as stand alone scritps.
define('SECURE', true);
और यह उन लिपियों के लिए है जिन्हें आप सीधे किसी के द्वारा एक्सेस नहीं करना चाहते हैं
//Security check
!defined('SECURE') and exit("You should not be here.<br>Go back to the <a href='index.php'>home</a> page.");
लॉग इन नहीं किए गए उपयोगकर्ताओं के लिए किसी भी प्रकार की फ़ाइल तक पहुंच को अवरुद्ध करने के लिए, इसे जोड़ें:
if (!isset($_SESSION['user']))
exit("You should not be here.<br>Go back to the <a href='index.php'>home</a> page.");