On Sunday 17 February 2008 19:22:03 nihilism machine wrote:
> 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");
>
> ?>
>

This looks weird. is this actually anything: $_FILES['uploaded']['tmp_name']. 
I always used $_FILES['tmp_name'], $_FILES['name'] and such

>
>
>
> -------------------------------
> Edward H. Hotchkiss
> Chief Technical Officer
> Durgle, INC
> [EMAIL PROTECTED]
> http://www.durgle.com
> -------------------------------



-- 
---
Børge Holen
http://www.arivene.net

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to