mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-04-03 06:16:20 +00:00
15 lines
281 B
PHP
15 lines
281 B
PHP
<?php
|
|
|
|
include ("cgi-bin/saveGraphHelpers.php");
|
|
include ("./src/vote_func.php");
|
|
|
|
$g_lang["current_language"] = "ru";
|
|
$voteTopics = getVoteTopics();
|
|
$votes = getVotes($voteTopics);
|
|
|
|
for ($i = 0; $i < count($voteTopics); $i++)
|
|
{
|
|
$voteTopics[$i]["vote"] = $votes[$i];
|
|
}
|
|
|
|
?>
|