Файл: graff.php
Строк: 110
<? # by Killer
include_once '../../sys/inc/start.php';
include_once '../../sys/inc/compress.php';
include_once '../../sys/inc/sess.php';
include_once '../../sys/inc/home.php';
include_once '../../sys/inc/settings.php';
include_once '../../sys/inc/db_connect.php';
include_once '../../sys/inc/ipua.php';
include_once '../../sys/inc/fnc.php';
include_once '../../sys/inc/user.php';
only_reg();
if (isset($user))$ank['id']=$user['id'];
if (isset($_GET['id']))$ank['id']=intval($_GET['id']);
$ank=get_user($ank['id']);
if(!$ank['id']){header("Location: /index.php?".SID);exit;}
$set['title']=$ank['nick'].' - стена'; // заголовок страницы
include_once '../../sys/inc/thead.php';
title();
aut();
if (isset($_SESSION['stena_graf'][$ank['id']]) && file_exists($_SESSION['stena_graf'][$ank['id']]['tmp_name'])) {
if (isset($_GET['delete'])) {
unlink($_SESSION['stena_graf'][$ank['id']]['tmp_name']);
unset($_SESSION['stena_graf'][$ank['id']]);
$_SESSION['message'] = 'Графити успешно удалено';
header("Location: /info.php?id=$ank[id]");
exit();
}
$err[] = 'Вы уже прикрепили граффити. Удалите старое и нарисуйте новое :)';
err();
echo "<div class='foot'>n";
echo "<a href='/info.php?id=$ank[id]'>Назад</a><br />n";
echo "</div>n";
include_once '../../sys/inc/tfoot.php';
}
if (!$webbrowser) {
$err[] = 'Вашее устройство не поддерживает рисование граффити :(';
err();
echo "<div class='foot'>n";
echo "<a href='/info.php?id=$ank[id]'>Назад</a><br />n";
echo "</div>n";
include_once '../../sys/inc/tfoot.php';
}
if (isset($_FILES['Filedata'])) {
if (file_exists($_FILES['Filedata']['tmp_name'])) {
$file = $_FILES['Filedata'];
copy($file['tmp_name'], H."style/stena_graf/".md5(time()).".png");
chmod(H."style/stena_graf/".md5(time()).".png", 0777);
$_SESSION['stena_graf'][$ank['id']]['tmp_name'] = H."style/stena_graf/".md5(time()).".png";
$_SESSION['stena_graf'][$ank['id']]['name'] = md5(time()).".png";
$_SESSION['message'] = 'Графити успешно добавлено';
exit();
}
}
?>
<script src="/sys/graf/swfobject.js"></script>
<embed type="application/x-shockwave-flash" src="/sys/graf/graffiti.swf" width="<? echo ($set['web']?600:500)?>" height="400" style="undefined" id="player" name="player" quality="high" allowfullscreen="false" flashvars="overstretch=false&postTo=/user/stena/graff.php?id=<? echo $ank['id']?>&redirectTo=/info.php?id=<? echo $ank['id']?>">
</embed>
<?
echo "<div class='foot'>n";
echo "<a href='/info.php?id=$ank[id]'>Назад</a><br />n";
echo "</div>n";
include_once '../../sys/inc/tfoot.php';
?>