A. When a contact fills out the form on a capture page their first name is stored in a cookie called "lname" and their email is stored in a cookie called "lemail".
The php code to display their first name is:
<?php echo $_COOKIE["lname"]; ?>
The php code to display their email is:
<?php echo $_COOKIE["lemail"]; ?>