This commit is contained in:
2021-03-05 13:00:07 +01:00
parent d2182f5020
commit 93b9411c99
7 changed files with 100 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
$votes = array();
if(isset($_COOKIE["Voting_reg"])) {
$votes = unserialize($_COOKIE["Voting_reg"]);
foreach ($votes as $vote){
if($_POST['gameJamId'] === $vote) return;
}
}
array_push($votes,$_POST['gameJamId']);
setcookie("Voting_reg", serialize($votes), time() + 86400, "/");