Просмотр поста #529272: У Вас есть один вопрос? - Тогда задайте его тут! new!

.
kandyor

ребята, помогите переписать:
по умолчанию фото выгружается со своим именем, надо присвоить названию айди новости...

require('../incfiles/class.upload.php');
$handle = new upload($_FILES['imagefile']);
if ($handle->uploaded) {
$handle->allowed = array('image/jpeg', 'image/gif', 'image/png');
$handle->file_max_size = 1024 * 3000;
$handle->file_new_name_body   = $nid;
$handle->image_resize         = true;
$handle->image_x              = 240;
$handle->image_ratio_y        = true;
$handle->image_convert = 'jpg';
$handle->process('../news/img/');
if (!$handle->processed) {
echo functions::display_error($handle->error);;
}
$handle->clean();
}