Вход Регистрация
Файл: user/mail/add.img.php
Строк: 59
<?php
include '../../sys/inc/start.php';
include 
'../../sys/inc/compress.php';
include 
'../../sys/inc/sess.php';
include 
'../../sys/inc/home.php';
include 
'../../sys/inc/settings.php';
include 
'../../sys/inc/db_connect.php';
include 
'../../sys/inc/ipua.php';
include 
'../../sys/inc/fnc.php';
include 
'../../sys/inc/user.php';
only_reg();
$set['title']="Прикрепить изображение";
$kont=get_user($_GET['id']);
if (!
$kont['id'])header("location:/index.php");
include 
'../../sys/inc/thead.php';
title();
if(isset(
$_GET['del_img']) && is_file(H.'user/mail/images/'.$_SESSION['file'].'.dat')){
unlink(H.'user/mail/images/'.$_SESSION['file'].'.dat');
header("location: mail.php?id=$kont[id]");
}
if(isset(
$_POST['ok'])){
if (isset(
$_FILES['file'])){
$type $_FILES['file']['type'];
if (
$type!=='image/jpeg' && $type!=='image/jpg' && $type!=='image/gif' && $type!=='image/png')$err='Извените но выбраное вами изображение не поддерживается. разрешено выгружать картинки форматами JPEG, JPG, GIF, PNG.';
}
if (!isset(
$err)){
$n="$passgen";
$_SESSION['file']=$n;
$_SESSION['filesize']=$_FILES['file']['size'];
$_SESSION['filename']=$_FILES['file']['name'];

$tmp $_FILES['file']['tmp_name'];
unlink(H.'user/mail/images/'.$n.'.dat');
move_uploaded_file($tmp,
H.'user/mail/images/'.$n.'.dat');
chmod(H.'user/mail/images/'.$n.'.dat'0777);
header("Location: mail.php?id=$kont[id]");
}
}
err();
if(
is_file(H.'user/mail/images/'.$_SESSION['file'].'.dat'))echo "<b>".htmlspecialchars($_SESSION['filename'])." (".size_file($_SESSION['filesize']).")</b><br/><a href='?id=$kont[id]&del_img' style='color:red'>Удалить изображение</a><br/>";
echo 
"<form method='post' action='add.img.php?id=$kont[id]' enctype='multipart/form-data'>";
echo 
"<b>Картинка:</b><br/>";
echo 
"<input type='file' name='file'/><br/>";
echo 
"<input type='submit' name='ok' value='Выгрузить'><br /></form>";
include 
'../../sys/inc/tfoot.php';
?>
Онлайн: 1
Реклама