Home >
Design - Imagery, Banners & Landers >
Carrier Callout (7)
06-17-2014 01:08 AM
#1
de_sean (Member)
Carrier Callout
Is it possible to callout the carrier in mobile landing pages?
06-17-2014 01:21 AM
#2
dwel999 (Member)
Yes, if you want more info you need to give more details about your setup such as tracker.
06-17-2014 02:11 AM
#3
nebuer (Member)
yup - specify it in the URL and use javascript to grab the result
06-17-2014 03:27 AM
#4
de_sean (Member)

Originally Posted by
dwel999
Yes, if you want more info you need to give more details about your setup such as tracker.
I'm using STM/Prosper Tracker and landing page is in PHP.
I also have the updated Maxmind Database.
Thanks my man.
06-17-2014 03:42 AM
#5
assets (Member)
you can use handsetdetection.com
here is a short walkthrough: http://stmforum.com/forum/showthread...l=1#post132895
06-17-2014 05:23 AM
#6
zeno (Administrator)
You can tell p202 to do this in the Get Links setup:

Which will evaluate to this in your LP URL:

Then just use $_GET['carrier']; in your PHP code to pull it out.
06-17-2014 05:56 AM
#7
de_sean (Member)

Originally Posted by
zeno
You can tell p202 to do this in the Get Links setup:
Which will evaluate to this in your LP URL:
Then just use $_GET['carrier']; in your PHP code to pull it out.
Ahhh.... So that's what it's for. Thanks Zeno!
Works perfectly!
Code:
<?php
$carrier = $_GET['carrier'];
?>
<?php echo $carrier; ?>
Home >
Design - Imagery, Banners & Landers >