Jump to content

[SOLVED] Need help on viewing pages


Akon

Recommended Posts

Okay, let's say you want use include 'title.php'; in your index.php file. You could do that this way:

 

in the file: index.php put this code:

define('access_allowed', 1);

in the file: title.php on the most top put:

if (access_allowed != 1) {
die('Direct access not allowed!');
}

 

That way when somebody open title.php line of code with die() will be activated.

 

If I have understood your question, that could be answer.

 

;)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.