View file mod/post/stena.php

File size: 619B
<?php
Defined('INDEX_S_S') or die ('Доступ запрещен!!!');
$file = file("mod/post/count.txt");                                                      // открываем файл с количеством сообщений
  if(!$file)
    {
      echo("Ошибка открытия файла count.txt");
    }
  else
    {
      $count =$file[0];                                                        // считываем количество сообщений
    }
@fclose($file);
echo("Всего $count сообщений. ");
?>
<br />Перейти в <a href="/?pg=CHat.php">Чат</a>
<iframe id="frame" src="/mod/post/frame.php" name="chat" width="100%" height="250px" frameborder="0"></iframe>