@ copy($picpfile ,"../images/$picpfile_name"); // The file
$filename = "../images/$picpfile_name";
// Content type
header('Content-type: image/jpeg');
list($width, $height) = getimagesize($filename);
$new_width = 80;
$new_height = 100;
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
imagejpeg($image_p,"../images/products/th1/$picpfile_name", 70);
// Content type
$new_width = 20;
$new_height = 20;
$image_p = imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
imagejpeg($image_p,"../images/products/th2/$picpfile_name", 70);