o0ozinkyo0o Posted October 25, 2013 Share Posted October 25, 2013 Hi all, In Prestashop has upload 1 file into database. I wanna modify to can upload multiple file into database. And in uploadProductFile.php I fixed to below but It has error "Property ProductDownload->filename is not valid". Anybody can help me with my issue! for($i=0; $i<count($_FILES['virtual_product_file']['name']);$i++) { $filename = $_FILES['virtual_product_file']['name'][$i]; $file = $_FILES['virtual_product_file']['tmp_name'][$i]; $newfilename = ProductDownload::getNewFilename(); } Link to comment Share on other sites More sharing options...
vekia Posted October 25, 2013 Share Posted October 25, 2013 if I were you i will create foreach loop on $_FILES array, but before any change, i want to ask something, your form accept multiple files? Link to comment Share on other sites More sharing options...
o0ozinkyo0o Posted October 25, 2013 Author Share Posted October 25, 2013 if I were you i will create foreach loop on $_FILES array, but before any change, i want to ask something, your form accept multiple files? of course I created in form! and I think For() same as Foreach! Thanks your reply! Link to comment Share on other sites More sharing options...
Recommended Posts