egroupware/phpgwapi/js/dhtmlxGantt/samples/02_data_load/php/loadXML.php
2011-11-16 19:31:00 +00:00

10 lines
154 B
PHP

<?php
$file = realpath('..') . '\\' . $_GET['path'];
if (file_exists($file)) {
header('Content-type: text/xml');
readfile($file);
}
?>