1
我創建了webform並希望向用戶顯示提交的webform數據。我正在使用webform.I想顯示標題,發件人名稱和body.I使用Webform Mysql Views模塊但我失敗了。請幫助我如何在drupal 7中顯示提交的webform數據
我創建了webform並希望向用戶顯示提交的webform數據。我正在使用webform.I想顯示標題,發件人名稱和body.I使用Webform Mysql Views模塊但我失敗了。請幫助我如何在drupal 7中顯示提交的webform數據
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.