Просмотр файла votes/index.php

Размер файла: 1.55Kb
<?php
// mod by Golem http://veplog.ru

require_once"../template/start.php";
require_once"../template/regglobals.php";
require_once"../template/config.php";
require_once"../template/functions.php";
require_once"../template/antidos.php";
require_once"../template/cookies.php";
require_once"../template/gzip.php";
require_once"../template/header.php";
require_once"../template/referer.php";
include_once"../themes/$config_themes/index.php";
include_once"../template/isset.php";

echo'<div class=tp> <b>Голосование</b></div>';

echo'<form action="vote.php?action=vote&amp;'.SID.'" method="post">';

$vfiles = file("../local/datavotes/votes.dat");
$vdata=explode("|",$vfiles[0]);
if($vfiles){
echo '<div class=tpanel><b>'.$vdata[0].'</b></div>';

if($config_themes!="wml"){
for ($i=1; $i<count($vdata);$i++){
if($vdata[$i]!==""){
echo '<input name="golos" type="radio" value="'.$i.'" /> '.$vdata[$i];
echo'<br>';
}}

echo'<input type="submit" value="Голосовать" /></form>';

}else{

for ($i=1; $i<count($vdata);$i++){
if($vdata[$i]!==""){

echo '<a href="vote.php?golos='.$i.'&amp;'.SID.'">'.$vdata[$i].'</a>';
}}
}

echo' <div class=panel>- <a href="vote.php?'.SID.'">Посмотреть результаты</a>';
}else{echo'<b>Голосование еще не создано</b><br>';}

echo'<br>- <a href="allvotes.php?'.SID.'">Архив голосований</a></div>';
echo'<div class=btm>[<a href="../index.php?'.SID.'">На главную</a>]</div>';
include_once"../themes/$config_themes/foot.php";
?>