With P202 is there a way to track Landing Page CTR without redirecting through the outbound link?
I've been able to do it through an <img src="http://p202.com/tracking202/redirect/lp.php?lpip=100">
However, that only works on landing page 100, is there a way to do across landing Page 1 -> Page 2 with a universal cookie on page 2? I have multiple pages 1, but only one page 2.
I.e. Visitor Lands on Page 1 (inbound code placed) > visits page 2 (cookie dropped and CTR recorded) -> Visits page 3 signs up ($$$ confirmation postback/pixel fires)
If the image pixel you mentioned works then would this work:
1) On landing page 1, use PHP to grab the lpip value and save it under a variable
2) Pass this as a keyword or c-value to the next page or store it in a cookie
3) On page 2, get that lpip value by whatever means and dynamically insert it into the image pixel.
This way, the image pixel on page 2 will be determined by what page 1 was - e.g.
<img src="http://p202.com/tracking202/redirect/lp.php?lpip=<?php echo $lpip; ?>">