upload issue

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



any idea why this fails?this is the error: "Sorry, there was a problem uploading your file"

<?php

require_once("classes/db.class.php");

$target = "";
$fileName = basename( $_FILES['uploaded']['name']);
$extension = strtolower(strrchr($fileName,"."));
$DB = new DB();
$insertID = $DB->insert_sql("INSERT INTO CMS_Media (File_Name) VALUES ('')");
$target = "media/" . $insertID . $extension;
//echo $target;
if (move_uploaded_file($_FILES['uploaded']['tmp_name'], $target)) {
	// Error
	echo "File was uploaded!";
} else {
	echo "Sorry, there was a problem uploading your file.";
}

chmod($target, 0755);

header("Location: crop.php?imageName=$newFileName");
	
?>




-------------------------------
Edward H. Hotchkiss
Chief Technical Officer
Durgle, INC
edward@xxxxxxxxxx
http://www.durgle.com
-------------------------------


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux