graphonline/backend/loadGraph.php
2024-10-10 20:17:45 +02:00

15 lines
228 B
PHP

<?php
include ("../core/config/main.php");
include ("saveGraphHelpers.php");
$name = $_GET["name"];
if (isValidName($name))
{
echo (gzuncompress(file_get_contents(getXMLFileName($name))));
}
echo ("");
?>