Added: 07/16/2011 | Updated: 13 Years Ago
Question How can I display a contact's information (exa: first name) on a page?
Answer
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"]; ?>