12 lines
270 B
PHP
12 lines
270 B
PHP
|
<?php
|
||
|
loadHelper("webpagetool");
|
||
|
|
||
|
$path = str_replace("../", "", get_requested_value("path"));
|
||
|
$server_path = "./" . $path;
|
||
|
$client_path = base_url() . $path;
|
||
|
|
||
|
if(file_exists($server_path)) {
|
||
|
$response = get_web_page($client_path, "get");
|
||
|
echo $response['content'];
|
||
|
}
|