How can I import Info from opt in to sales page?

2 replies
I know it can be done, but don't know how. Hopefully someone can help me.

I use getresponse I'd like to somehow import their name from my opt in form to my sales pahe for a little more personalization.

Can't seem to find an answer anywhere....

Thanks so much
#import #info #opt #page #sales
  • Christian,

    Do they go directly from the opt in to the thank you? or is there a page in between?

    If it's straight from one page to the other, make sure its a php file and just type this in:

    <?php echo $_POST['name'] ?>

    You need to check the <input> tag on your form for this <input name="name of textfield">. So if the name value was <input name="Opt In Name"> you would change the php above to:

    <?php echo $_POST['Opt In Name'] ?>

    That simply retrieves the value that was posted to the page and echo's it back to browser, you can then put in whatever html you want around it.
    {{ DiscussionBoard.errors[365279].message }}
  • Profile picture of the author Christian Fox
    Right now I have it set up double opt in.
    They submit the form and are sent to get responses default thank you/white listing page. This tells them to check their inbox for the confirmation link.

    Upon clicking the confirm link I am taking them directly to the sales page.
    Signature

    {{ DiscussionBoard.errors[365428].message }}

Trending Topics