Jump to content

image function not uploading correctly?


darkfreaks

Recommended Posts

sometimes it uploads sometimes it does not anyone see flaws?

 

<?php

if(!empty($_FILES['images']'name'][0]))
{
	while(list($key,$value) = each($_FILES['images']['name']))
	{
		if(!empty($value))
		{
			list($fname,$ext) = split("\.", $value);
			if ($ext == "jpg" || $ext == "gif" || $ext == "png") {
				$NewImageName = $t."_offer_".$value;
				copy($_FILES['images']['tmp_name'][$key], "re_images/".$NewImageName);

				$MyImages[] = $NewImageName;
			}
		}
	}

	if(!empty($MyImages))
	{
		$ImageStr = implode("|", $MyImages);
	}

}?>

Link to comment
https://forums.phpfreaks.com/topic/92667-image-function-not-uploading-correctly/
Share on other sites

You could handle your errors so you know why it's not uploading

 

<?php
if(!empty($_FILES['images']'name'][0]))
{
	while(list($key,$value) = each($_FILES['images']['name']))
	{
		if(!empty($value))
		{
			list($fname,$ext) = split("\.", $value);
			if ($ext == "jpg" || $ext == "gif" || $ext == "png") {
				$NewImageName = $t."_offer_".$value;
				copy($_FILES['images']['tmp_name'][$key], "re_images/".$NewImageName);

				$MyImages[] = $NewImageName;
			}else{
				echo "Only jpg, gif and png";
			}
		}else{
			echo "Value is empty";
		}
	}

	if(!empty($MyImages))
	{
		$ImageStr = implode("|", $MyImages);
	}

}else{
	echo "File not posted";
}?>

 

Of course if your img has 11 mega px it's not gona upload lol

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.