graphonline/cgi-bin/loadGraph.php
2017-07-28 00:17:42 +03:00

14 lines
237 B
PHP
Executable File

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