mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-06-30 23:05:29 +00:00
17 lines
319 B
PHP
17 lines
319 B
PHP
<?php
|
|
|
|
include ("../core/config/main.php");
|
|
include ("saveGraphHelpers.php");
|
|
|
|
$graph = file_get_contents("php://input");
|
|
$name = $_GET["name"];
|
|
|
|
if (isValidName($name))
|
|
{
|
|
$file = fopen(getXMLFileName($name), "w");
|
|
fprintf($file, "%s", gzcompress($graph, -1));
|
|
fclose($file);
|
|
echo ("OK");
|
|
}
|
|
?>
|