Home > Questions and Answers > General Questions

Use target keyword on landing page (2)


11-02-2013 02:21 AM #1 murkmurk (Member)
Use target keyword on landing page

I'm probably missing something but here is a test im running now
zeropark -> cpvlab -> lp -> offer

Zeropark passes the target value down to cpv lab can I use that "target" phrase / keyword in my landing page? Eg if the search phrase was "pizza hut coupon" to change my landing page to say "enter your email to get pizza hut coupons". I'm currently using unbounce for my landing pages.

thanks in advance


11-02-2013 03:12 AM #2 thedudeabides (Moderator)

Go into edit mode and then go to where it says "ad token" above where you'd enter your Offer/LP Urls, and tick the box that says "LP" to pass that parameters and value on to the destination. So

url append: &keyword={keyword} or whatever zeroparks tag is
parameter: keyword

Make sure your landing page is php and then you can get the value with php like so

<?php

if (isset($_GET["keyword"])) {
$keyword = $_GET["keyword"];
} else {
$keyword = "fallback value";
}
?>
<html>
your page

keyword insertion here:<?php echo $keyword ?>
</html>


Home > Questions and Answers > General Questions