Send this file:

Resize Options: No resize Width to 640 Width to 800
[Check uploaded files] "; print "
The link to your picture is $cleaned_name"; print "

[Upload another picture]"; move_uploaded_file($file_tmp, $filedir.'/'.$cleaned_name); $writefile=$filedir.'/'.$cleaned_name; if ($_POST['resize']<>"None") { if ($_POST['resize']=="640") { $resize_str="640x480"; } else if ($_POST['resize']=="800") { $resize_str="800x600"; } else { die("No thanks."); } $cmd="$convert -size {$width}x{$height} $writefile -resize $resize_str $writefile"; exec($cmd); } } ?>