forked from extern/egroupware
Add dhtmlxGantt for gantt charts
This commit is contained in:
12
phpgwapi/js/dhtmlxGantt/samples/02_data_load/php/saveXML.php
Normal file
12
phpgwapi/js/dhtmlxGantt/samples/02_data_load/php/saveXML.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
$filename = $_POST['filename'];
|
||||
$data = $_POST['data'];
|
||||
|
||||
$file = realpath('..') . '\\save\\' . $filename;
|
||||
|
||||
$f = fopen($file, 'w');
|
||||
fwrite($f, $data);
|
||||
fclose($f);
|
||||
|
||||
?>
|
Reference in New Issue
Block a user