Reputation: 21
Can someone please help me with implementing a customized form into Magento?
I have created a PHP form that works outside Magento that collects user data and allows them to upload a file. I am clueless as to how to get this functioning in the Magento environment. We are already taking advantage of the internal form with a contact us. This one is a feedback form to collect user data.
I have been digging around in Google for a couple of hours now and the only scenarios are how to get aspects of their forms working, not how they got it in there in the first place.
Your responses are appreciated. I am even open to you just giving me the right link to look at.
Upvotes: 1
Views: 4943
Reputation: 1111
There is a good article about how to create a custom form in magento: Create custom form.
It describes how to create a route in config.xml
, how to create the controller php (where you can handle the post action), and an example of the template file.
Upvotes: 1