mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 23:36:00 +00:00
16 lines
365 B
PHP
Executable File
16 lines
365 B
PHP
Executable File
<?php
|
|
include ("../core/config/main.php");
|
|
|
|
if (!isset($_COOKIE["vote0"]))
|
|
{
|
|
$index = $_GET["index"];
|
|
|
|
setcookie("vote0", "true", time() + 3600 * 24 * 90, '/'); // 3 month
|
|
|
|
$file = fopen("../" . $g_config['vote'], "a");
|
|
fprintf($file, "%d\n", $index);
|
|
fclose($file);
|
|
echo ("OK");
|
|
}
|
|
?>
|