On Jan 22, 2008, at 5:01 PM, nihilism machine <[EMAIL PROTECTED]> wrote:

any ideas why this does not work?


class upload {

   function upload() {
       upload::uploader();
   }

   function uploader() {
       $FileName = basename($_FILES['upload1']['name']);
if (move_uploaded_file($_FILES['upload1']['tmp_name'], $FileName)) {
           chmod($FileName, 0755);
           rename($FileName, "admin/advertisements/" . $FileName);
           return $FileName;
       } else {
           return "Error!";
       }
   }
}

Try deleting the upload() function. Then:

$test = new upload();
$filename = test->uploader();

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

Reply via email to