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
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:
<?php $referrer = $_SERVER['HTTP_REFERER']; parse_str($referrer); ?>
http://domain.com/tracking202/redirect/tracker.php?t202id=1234&c1=name&c2=email&c3=age
<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>
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
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.
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
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.