PPV traffic - Display the pop up triggering website on my LP?

Ben89

New member
Mar 30, 2007
670
4
0
Hey guys,

I'm looking for some ways to increase the CTR on my landing page which is receiving PPV traffic and I was wondering if you guys happen to know of a way to display the domain name that triggered my landing page to pop up onto my landing page? I mean, if you can pass through the URL for tracking purposes, I'm sure that domain can be dynamically displayed on my landing page as well. Feel free to PM me. I'm even willing to pay for any scripts that can do this for me. Thanks.
 


if you set t202kw=google.com in your campaign link then to get this on your lp you would use

Code:

<?
$keyword = $_REQUEST["t202kw"];
echo "Welcome $keyword Visitor";
?>
 
if you set t202kw=google.com in your campaign link then to get this on your lp you would use

Code:

<?
$keyword = $_REQUEST["t202kw"];
echo "Welcome $keyword Visitor";
?>

This works perfectly. Thanks a lot!

I was just thinking how much CTR could increase if you display the actual logo of the website that triggered the pop up instead of the domain in textual format. It would obviously work like an endorsement from the site. But then again it may not be approved by the ppv network for copyright issues and whatnot. Anyway, if you guys know how to implement the code for this let me know. For now I'll just test the effect that displaying the domain with different kinds of messages has on the CTR and conversions.
 
This works perfectly. Thanks a lot!

I was just thinking how much CTR could increase if you display the actual logo of the website that triggered the pop up instead of the domain in textual format. It would obviously work like an endorsement from the site. But then again it may not be approved by the ppv network for copyright issues and whatnot. Anyway, if you guys know how to implement the code for this let me know. For now I'll just test the effect that displaying the domain with different kinds of messages has on the CTR and conversions.
if (strpos($_REQUEST["t202kw"],'google.com') !== false) {
echo '<img src="google.gif">';
}
elseif (strpos($_REQUEST["t202kw"],'yahoo.com') !== false) {
echo '<img src="yahoo.gif">';
}

my php is rusty, hasn't been tested.
 
This works perfectly. Thanks a lot!

I was just thinking how much CTR could increase if you display the actual logo of the website that triggered the pop up instead of the domain in textual format. It would obviously work like an endorsement from the site. But then again it may not be approved by the ppv network for copyright issues and whatnot. Anyway, if you guys know how to implement the code for this let me know. For now I'll just test the effect that displaying the domain with different kinds of messages has on the CTR and conversions.

lol i would be more worried about the lawsuits you'd incur for using someones trademarked logo for your financial gain... enjoy that... :thumbsup:
 
This works perfectly. Thanks a lot!

I was just thinking how much CTR could increase if you display the actual logo of the website that triggered the pop up instead of the domain in textual format. It would obviously work like an endorsement from the site. But then again it may not be approved by the ppv network for copyright issues and whatnot. Anyway, if you guys know how to implement the code for this let me know. For now I'll just test the effect that displaying the domain with different kinds of messages has on the CTR and conversions.
DOn't use the domain owner's logo. You're inviting big trouble!