File size: 1.8Kb
<?php
/////////////////////////////////////////////////////////////////////////////////////////////////////
// НАЗВАНИЕ СКРИПТА: ГОЛОСОВАНИЕ v.1 //
// АВТОР СКРИПТА: HOBLIN //
// E-MAIL: [email protected] //
// WAP САЙТ: http://hoblin.h2m.ru //
// ICQ: 439796326 //
// ВНИМАНИЕ !!! ////////////////////////////////////////////////////////////////////////////////////
// ПО ВОПРОСАМ НАПИСАНИЯ СКРИПТОВ НАЗАКАЗ ОБРАЩАЙТЕСЬ В АСЮ //
/////////////////////////////////////////////////////////////////////////////////////////////////////
Error_Reporting(E_ALL & ~E_NOTICE);
Error_Reporting (ERROR | WARNING);
session_name("SID");
session_start();
include ("../config.php");
include ("../themes/".$themes.".php");
include ("trans.php");
echo "<center>Голосование</center>";
$dir = opendir("tem");
$count=0;
while ($file = readdir ($dir))
{
$file = str_replace(".dat","",$file);
if (( $file != ".") && ($file != ".."))
{
$count++;
$file=tr_to_win($file);
echo "<hr><small>$file</small>";
$file=win_to_tr($file);
echo " <a href=\"../opros/golos.php?&tem=$file&".SID."\">Голос</a>";
echo " <a href=\"../opros/rez.php?&tem=$file&".SID."\">Результаты</a><br/>";
}}
closedir ($dir);
echo "<hr><div>Всего опросов: $count</div>";
include ("../templates/foot.php");
?>