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

Размер файла: 1.1Kb
<?php
@session_start();
Header('Content-Type: application/xhtml+xml; charset=utf-8');
Header('Cache-Control: no-cache, must-revalidate');
print '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru"><head><title>Голосование</title>
<link rel="stylesheet" href="style.css" type="text/css" /></head><body><div>';
$arr=file('data.dat');
$c=count($arr);
if(SID) $si='&amp;'.SID; else $si=null;
function show($i){
 $na=explode('||',$GLOBALS['arr'][$i+1]);
 $va=explode('||',$GLOBALS['arr'][$i+2]);
 $c=count($na);
 $p=0;
 for($n=0;$n<$c;$n++){
  $p=$p+$va[$n];
 }
 $p=$p/100;
 print '<u>'.$GLOBALS['arr'][$i].'</u><br /><small>';
 for($n=0;$n<$c;$n++){
  print('<a href="vote.php?q='.($i/3).'&amp;v='.$n.$GLOBALS['si'].'">'.$na[$n].'</a>: '.round($va[$n]/$p,1).'%<br />');
 }
print '</small><hr />';
}
for($i=0;$i<$c;$i=$i+3){
 show($i);
}
$_SESSION['e']=true;
print '[<a href="..">На главную</a>]</div></body></html>';
?>