我创建了webform并希望向用户显示提交的webform数据。我正在使用webform。我想显示标题,发件人姓名和正文。我使用了Webform Mysql Views模块但是我失败了。请帮助我
答案 0 :(得分:2)
function module-name_webform_submission_insert($node, $submission) {
// perform your task
}
This function is called after you save any data in webform. this gives you the webform node id object and submission id. with this you can perform your all the task and show the data to the user.