Upload image

Your Image uploaded successfully!

"; } elseif ($_GET["r"] == "fail") { // Upload failed echo "

F, Upload failed

"; } elseif ($_GET["r"] == "nofile") { // No file was present echo "

No file lol

"; } else { // echo "

Select an image to upload

"; } ?>
getImageFormat(); // If image is gif if ($image_format == 'GIF') { $image_thumbnail = $image_thumbnail->coalesceImages(); } // Resize image $image_thumbnail->resizeImage(300,null,null,1,null); // Save image $image_thumbnail->writeImage("images/thumbnails/".$image_basename); header("Location:upload.php?r=success"); } else { // Could not move images to folder header("Location:upload.php?r=fail"); } } else { // No image present header("Location:upload.php?r=nofile"); } } ?>