Error: The upload folder is not writeable";
}
else {
if ( ( $ext == "jpg" || $ext == "jpeg" || $ext == "png" || $ext == "gif" ) && ( $_FILES['flash_image']['type'] == "image/jpeg" || $_FILES['flash_image']['type'] == "image/gif" || $_FILES['flash_image']['type'] == "image/png" ) && ( $_FILES['flash_image']['size'] < 1024000 ) ) {
list($image_width, $image_height) = getimagesize( $_FILES['flash_image']['tmp_name'] );
if ( !file_exists( $upload_file_path ) ) {
if ( move_uploaded_file( $_FILES['flash_image']['tmp_name'], $upload_file_path ) ) {
echo 'Success-:-' . $upload_filename;
}
else {
echo "Error: An error occured during upload, please try again";
}
}
else {
echo "Error: An image with that filename already exists";
}
}
else {
echo "Error: Must be a jpeg, gif or png image that is smaller than 1Mb";
}
}
}
else {
echo "Error: No file uploaded";
}
?>