mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 23:36:00 +00:00
15 lines
242 B
PHP
Executable File
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 ("");
|
|
?>
|