将magento联系表格数据存储在数据库中?

I want to store magento contact form data into database. I don't know basically it posts to which controller?

I want to send email as well store all the data in my custom table.

Thanks.

Once you have your custom table built create a module in your local pool and extend the Mage_Contacts_IndexController. Look at the ticket I submitted in Magento.stackexchange.com. the code I use in the post below is from my contact form. Just use the right $_POST variable to pass into the custom form.

See my code here and how to properly extend it