Add dhtmlxGantt for gantt charts

This commit is contained in:
Nathan Gray
2011-11-16 19:31:00 +00:00
parent 15d318847d
commit 6d17a1a168
118 changed files with 10897 additions and 0 deletions

View 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);
?>