$width = 300;
$img_source = imagecreatefromjpeg($_FILES['picture']['tmp_name']);
$fn = $row["Parent"]."_".$_REQUEST["id"].".jpg";
// имя файла
$height = round(imagesy($img_source)/(imagesx($img_source) / $width));
$img_desc = imagecreate($width, $height); // HEIGHT
imagecopyresized($img_desc, $img_source, 0, 0, 0,0, $width, $height, imagesx($img_source), imagesy($img_source));
imagejpeg($img_desc, $fn);
imagedestroy($img_desc);
imagedestroy($img_source);