Hello List,
i am having a problem with an flash upload form
if have tried it this way:
[bootstrap file]
Zend_Registry::set('files',$_FILES);
[upload]
$files = Zend_Registry::get('files');
// to catch the values
$filesDump = Zend_Debug::dump($files,null,false);
$logger->info($filesDump);
$globalFilesDump = Zend_Debug::dump($_FILES,null,false);
$logger->info($globalFilesDump);
// move the uploaded file
if (move_uploaded_file($files['Filedata']['tmp_name'], "/path/to/file"))
{
}
But no matter what i do i won?t get a any value in there.
Please help me, i am confused... ;)
Alex