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