mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-02-16 02:30:51 +00:00
Moved php from cgi-bin to backend
This commit is contained in:
16
backend/saveGraph.php
Normal file
16
backend/saveGraph.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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");
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user