тут есть ХМЛ ошибка ????? не могу грузить фото в анкету
switch ($mod) { case 'avatar': /* -----------------------------------------------------------------Выгружаем аватар -----------------------------------------------------------------*/echo '<div class="phdr"><a href="profile.php? user=' . $user['id'] . '"><b>' . $lng['profile'] . '</b></a> | ' . $lng_profile['upload_avatar'] . '</div>'; if (isset($_POST['submit'])) { $handle = new upload($_FILES['imagefile']); if ($handle->uploaded) { // Обрабатываем фото $handle->file_new_name_body = $user['id']; //$handle->mime_check = false; $handle->allowed = array (
); $handle->file_max_size = 1024 * $set['flsz']; $handle->file_overwrite = true; $handle->image_resize = true; $handle->image_x = 32; $handle->image_y = 32; $handle->image_convert = 'png'; $handle->process('../files/users/avatar/'); if ($handle->processed) {
$lng_profile['avatar_uploaded'] . '<br />' .
act=edit&user=' . $user['id'] . '">' . $lng['continue'] . '</a></p></div>' .
href="profile.php?user=' . $user['id'] . '">' . $lng['profile'] . '</a></div>'; } else {
>error); } $handle->clean(); } } else { echo '<form enctype="multipart/form-data" method="post" action="profile.php? act=images&mod=avatar&user=' . $user['id'] . '">' . '<div class="menu"><p>' . $lng_profile['select_image'] . ':<br />' . '<input type="file" name="imagefile" value="" />' . '<input type="hidden" name="MAX_FILE_SIZE" value="' . (1024 * $set['flsz']) . '" /></p>' . '<p><input type="submit" name="submit" value="' . $lng_profile['upload'] . '" />' . '</p></div></form>' . '<div class="phdr"><small>' . $lng_profile['select_image_help'] . ' ' . $set['flsz'] . ' kb.<br />' . $lng_profile['select_image_help_2'] . '<br />' . $lng_profile['select_image_help_3'] . $lng_profile['select_image_help_4'] . '</small></div>'; } break;