graphonline/cgi-bin/loadGraph.php
2017-04-15 01:34:36 +03:00

13 lines
197 B
PHP
Executable File

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