I have created a custom application within Joomla using Flexicode. I am trying to obtain the file name that is uploaded by Easy File Uploader so that I can store it in a database. I tried finding it in the $_POST but it does not seem to be returned. Any suggestions
@markarupert. Sorry for not responding sooner. Ok… You may need to explain more of what you are trying to do. However, if you have a look at the helper.php file around line 201, you will see a function called: storeUploadedFile. In that function, you will see how I get the file name from the $_FILES variable. Because it is a multipart/form-data, the file data, including the name, is stored in the php variable $_FILES.