Photo Upload Message

Error uploading your photo

“;
echo “File is not an image.
“;
$uploadOk = 0;
}
}
// Check if file already exists
if (file_exists($target_file)) {
echo “

Error uploading your photo

“;
echo “Sorry, a file with this name already exists. Please change the name of your file and try to upload it again
“;
$uploadOk = 0;
}
// Check file size
if ($_FILES[“fileToUpload”][“size”] > 500000) {
echo “

Error uploading your photo

“;
echo “Sorry, your file is too large.
“;
$uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != “jpg” && $imageFileType != “png” && $imageFileType != “jpeg”
&& $imageFileType != “gif” ) {
echo “

Error uploading your photo

“;
echo “Sorry, only JPG, JPEG, PNG & GIF files are allowed.
“;
$uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
echo “

Error uploading your photo

“;
echo “Sorry, your file was not uploaded.
“;
echo “You can return to the upload page by clicking here to try again”;
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES[“fileToUpload”][“tmp_name”], $target_file)) {
echo “Thank you for your entry into the Valentines Photo Competition. The file “. basename( $_FILES[“fileToUpload”][“name”]). ” has been uploaded.
“;
} else {
echo “Sorry, there was an error uploading your file.
“;
echo “You can return to the upload page by clicking here to try again”;
}
}
?>

You can return to the home screen by clicking here or by using the menu above
Scroll to Top