Home > Other Systems (CPVLab, iMobiTrax, P202, Track Revenue, Click, Google Analytics, etc.) > Normal Prosper202

prosper passing (6)


03-19-2014 04:33 AM #1 seowork12 (Member)
prosper passing prepop variables to my offer

hi im trying to pass prepop variables to my offer lp with prosper but I am having trouble doing so how would I go about doing this?


I seen an old post on ctrtard but this is outdated


03-19-2014 04:59 AM #2 zeno (Administrator)

I think you just need to change the value="" part for each form item. So, you need to get the c1, c2, etc. values that you appended to the p202 tracking link, to your lander. Unfortunately I don't think [[c1]] and so on in the landing page URL setup in p202 works. However, we can utilise the fact that the referring page has all these values in it's URL...

So, you could add the following to the top of your file:

Code:
<?php
$referrer = $_SERVER['HTTP_REFERER'];
parse_str($referrer);
?>
Then, in your forms, add a value for each form and echo the $variable that has that information. Lets say you pass info like so into your tracking202 URL:

Code:
http://domain.com/tracking202/redirect/tracker.php?t202id=1234&c1=name&c2=email&c3=age
Then, in your form on your lander just use e.g.:

Code:
<form>
<input type="text" name="name" value="<?php echo $c1; ?>">
<input type="text" name="email" value="<?php echo $c2; ?>">
<input type="text" name="age" value="<?php echo $c3; ?>">
</form>
That might work.


03-19-2014 06:13 AM #3 seowork12 (Member)

thanks zeno but I don't think this will work for me as I have 8 values I need to pass for example I think something like this would work http://ctrtard.com/affiliate-marketi...rosper-202-mo/ but the whole problem with that is its outdated and I couldnt get it to work with prosper 1.7.2 if you guys have a solution to this it would help me allot


03-19-2014 07:02 AM #4 zeno (Administrator)

I may have misinterpreted - when you say your offer LP do you mean the offer page, which you don't control, or your landing page?

If it's to the offer page and via an affiliate link as well then the best solution is to talk to your affiliate network and advertiser about prepopulating. If they allow it they may be able to set it up so you can pass the values through the URL.


03-19-2014 08:35 AM #5 seowork12 (Member)

hi zeno thanks for the reply what i am trying to do is pre populate the offers landing page for example if i don't use prosper i can pass the variables fine and the offers landing page prepopulates as it should


my problem is prosper wont pick up the variables for example prosper is passing the variables as email=$email instead of email=email@yahoo.com

do you have a solution for this thanks


03-19-2014 09:52 AM #6 zeno (Administrator)

You'll have to divulge your setup - i.e. how you have structured you tracking link, how you are passing email values to it, how you have structured your affiliate link in the campaign setup, are you using a lander, etc.

This should be trivial for tracking202 to do it will just require the right configuration.


Home > Other Systems (CPVLab, iMobiTrax, P202, Track Revenue, Click, Google Analytics, etc.) > Normal Prosper202