View file zarnica/#adm/game.php

File size: 640B
<?php


$set['title']="Зарница: текущая игра";
include_once H.'sys/inc/thead.php';
title();
aut();

if ($GAME_ACTIVE && $GAME_ACTIVE['stat']=='active')
{
  if (isset($_GET['stop']))
  {
  mysql_query("UPDATE `zarnica` SET `live_1`='0', `live_2`='0' WHERE `id`='$GAME_ACTIVE[id]' LIMIT 1 ");
    if (mysql_affected_rows()>0)
    {
    reload("?", "Обнуление жизни комманд! ");
    }
  }
echo "<div class='nav1'><img src='/style/icons/str.gif' alt='*' /><a href='?act=game&stop'>Остановить ничьей</a></div>";

}else{
echo "<div class='err'>Нет активной игры</div>";

}

?>