egroupware/phpgwapi/js/dhtmlxGantt/samples/02_data_load/php/loadXML.php

10 lines
154 B
PHP
Raw Normal View History

2011-11-16 20:31:00 +01:00
<?php
$file = realpath('..') . '\\' . $_GET['path'];
if (file_exists($file)) {
header('Content-type: text/xml');
readfile($file);
}
?>