Hi,

I created the webform confirmation page. I display the submission form to submitters by using the below script

<?php
 
// Print the webform submission to the submitter
 
include_once drupal_get_path('module','webform') . '/includes/webform.submissions.inc';
 
$submission = webform_get_submission($node->nid, $sid);
 
$email = NULL;
 
$format = "html";

  print
webform_submission_render($node, $submission, $email, $format);
?>

</div>

Here am getting the entire submission details along with the label name. I want to remove the label name and display only the fields which is enter by the submitters. I am newbie in drupal and php. Please help me out.
Thanks