graphonline/backend/saveSvg.php
2024-10-11 19:33:03 +02:00

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");
}
?>