graphonline/cgi-bin/loadGraph.php
2019-05-25 14:26:24 +02:00

15 lines
242 B
PHP
Executable File

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