mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-06-30 23:05:29 +00:00
16 lines
350 B
PHP
16 lines
350 B
PHP
<?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");
|
|
}
|
|
?>
|