mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 15:26:12 +00:00
20 lines
342 B
PHP
20 lines
342 B
PHP
<?php
|
|
|
|
include ("../core/config/main.php");
|
|
include ("saveGraphHelpers.php");
|
|
|
|
$name = $_GET["name"];
|
|
|
|
if (isValidName($name))
|
|
{
|
|
$imageFilename = getSvgFileName($name);
|
|
$svgData = file_get_contents('php://input');
|
|
|
|
file_put_contents($imageFilename, $svgData);
|
|
|
|
chmod($imageFilename, 0644);
|
|
echo ("OK");
|
|
}
|
|
|
|
?>
|