-
// php.ini :: allow_url_fopen = Off
-
-
die ('Invalid request.');
-
}
-
$include_file = $_GET['page'];
-
while (stristr ($include_file, '../')) {
-
$include_file =
str_replace ('../',
'',
$include_file);
-
}
-
$path = '/path/to/file/';
-
-
include $path .
$include_file;
-
}