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

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

Error_Reporting(E_ALL & ~E_NOTICE);
require ("system/core.php");
require ("templates/header.php");
?>
<?
$name = nl2br(htmlspecialchars(stripslashes($_POST[name])));
$msg = nl2br(htmlspecialchars(stripslashes($_POST[msg])));
require ("includes/abc.php");
require ("includes/exp.php");
?>
<div class="head">Результат</div>
<div class="cont">
<b>Результат перевода:</b><br><hr>
<? echo "$msg"; ?><br>
<?
$meta = fopen("tmp/notes.dat","a+");
$str = ("Автор: $name\nПеревод: $msg\n---------------\n");
if(!$meta)
{ echo "Ошибка базы данных!"; }
else
{ fwrite($meta,$str); }
fclose($meta);
?>
<?
$meta_tmp = fopen("tmp/tmp.dat","w+");
$str_tmp = ("<b>Автор:</b> $name<br /><b>Перевод:</b> $msg");
if(!$meta_tmp)
{ echo "Ошибка базы данных!"; }
else
{ fwrite($meta_tmp,$str_tmp); }
fclose($meta_tmp);
?>
<hr>
[<a href="index.php">Перевести еще</a>]<br>
<hr>
</div>
<?php require ("templates/footer.php"); ?>