I am working on magento 1.7 version. I have a custom extension.In this I need to add option to upload multiple images similar to default product extension of magento.
How can I achieve this?
I am working on magento 1.7 version. I have a custom extension.In this I need to add option to upload multiple images similar to default product extension of magento.
How can I achieve this?
Copyright © 2021 Jogjafile Inc.
Since you are using a file uploads, you need to add enctype="multipart/form-data" in your edit.php file.(very important)
Now in order to upload an image, your form file should look like this
Now in your controller -> saveAction() add these codes
You are done !! I think this will give basic idea of uploading an image. Using this make your own custom module. Good luck