Jump to content

[SOLVED] problem with image upload and record...


ccrevcypsys

Recommended Posts

This code isnt working to upload my image. Can someone possibally tell me whats wrong?

 

$date_str=date('Ymdhis');
$uploadFileName = str_replace(array(" ","%20"),"_",$_FILES['image']['name']);
if (is_uploaded_file($_FILES['image']['tmp_name'])) {
	$savefile = "../images/uploads/".$date_str."_".$uploadFileName;

if (move_uploaded_file($_FILES['image']['tmp_name'], $savefile)) {
	@chmod($savefile, 0644);
$record = $date_str."_".$uploadFileName;
	}
	}

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.