Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 25th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Drupal Webform: - How do I access webform components labels on the congratulations page
  2. <?php  
  3. include_once(drupal_get_path('module', 'webform') .'/includes/webform.submissions.inc');
  4. $nid = arg(1);
  5. $sid = $_GET['sid'];
  6. $submission = webform_get_submission($nid, $sid);
  7. for ($i = 1; $i <= 2; $i++) {
  8.      echo $submission->data[$i]['value'][0];  
  9. }
  10. ?>