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

Размер файла: 1.83Kb
<?php
// coding by Felis

session_start();
require_once 'sys/core.php';
require_once 'sys/fnc.php';
require_once 'templates/header.php';

switch($_GET['do'])
{
case '':
echo '<div class="head">Статистика сервиса</div>
<div class="cont">
<a href="view.php?do=last">Последний перевод</a><br/>
<a href="view.php?do=site">Последний сайт</a><br/>
<hr/>
<b>Совершено переводов:</b> '.file_get_contents('tmp/counter.dat').'
<hr/>
<a href="http://'.INDEX.'">На главную</a>';
break;
case 'last':
$lasttext = @file_get_contents('tmp/tmp.dat');
$notbr = $lasttext;
$notbr = str_replace('<br />','',$notbr);
$notbr = str_replace('<br/>',"\n",$notbr);
$notbr = str_replace('<b>','',$notbr);
$notbr = str_replace('</b>','',$notbr);
echo '
<div class="head">Последний перевод</div>
<div class="cont">
'.$lasttext.'
<hr/>
<b>Скопировать текст:</b><br/><br/>
<textarea class="special" rows="5" cols="15" style="width: 277px; height: 155px;" name="msg">'.$notbr.'</textarea><br/><br/>
<form action="sendmail.php?do=prepare" method="post">
<input type="hidden" value="'.$notbr.'" name="text"/>
<input type="submit" value="На E-mail"/>
</form>
<hr/>
<a href="view.php">Назад в статистику</a><br/>
<a href="http://'.INDEX.'">На главную</a><br/>';
break;
case 'site':
echo '<div class="head">Последний сайт</div>
<div class="cont">
<b>Последний сайт:</b>
<a href="'.file_get_contents('tmp/site.dat').'">'.file_get_contents('tmp/site.dat').'</a>
<hr/>
<a href="view.php">Назад в статистику</a><br/>
<a href="http://'.INDEX.'">На главную</a><br/>';
break;
default:
header ("Location: index.php");
break;
}
echo '</div>';

require_once 'templates/footer.php';
?>