Home > Paid Traffic Sources > Mobile

Calling Out Carrier and Handset on Mobile Landers (11)


02-03-2013 10:17 PM #1 francis (Member)
Calling Out Carrier and Handset on Mobile Landers

Hey all,

I'm new to mobile and I'm trying to figure out how to call out handsets and carriers on my landers. Is this possible using a php script and a database or is it more complicated than that? Any help would be greatly appreciated.

Jordon


02-03-2013 11:40 PM #2 sandyone (Member)

I can't see how the device model is transmitted only that its mobile and the OS used.


02-03-2013 11:42 PM #3 nissangtr (Member)

Easiest way is if you pass the parameters from the ad network - for example, jumptap has device parameters. However, not all ad networks will have the device/carrier parameters.


02-03-2013 11:44 PM #4 sandyone (Member)

I can see accessing the OS of a mobile device, such as Android , but not the model of the phone Android is running on.

https://support.google.com/analytics...c=2568641&rd=1


02-04-2013 01:20 AM #5 deondup (Member)

use the Maxmind database - you can use the same one you are using for the STM add-on for Prosper


02-04-2013 09:46 AM #6 machoman77 (Member)

@Jordan, It's not complicated. You can pass parameters via your own tracking links and can call out them into your landing page. This can be done using PHP.


02-04-2013 03:27 PM #7 The Angry Russian (Moderator)

You can also do it using MobAff Tracker. We have internal macros like [device] you would have to use PHP to get it from the URL string and insert into your LP.


02-04-2013 06:05 PM #8 stackman (Administrator)

Calling out almost anything of the users info on any landing page always help!

Tech aspects have been covered, let me tell you about the conversion aspects
It works well! So well actually that it's quite risky with certain offers.

For the offers it's not risky with, you can really see some conversion rate increases 30% + depending on your wording.

Just make sure you don't do anything like this: "AT&T would like you congratulate you with a brand new Apple iPhone 6". -- AT&T just may come knocking


02-08-2013 10:14 PM #9 luxus95 (Member)

use the Maxmind database - you can use the same one you are using for the STM add-on for Prospe
I have maxmind install with P202 it work OK with jumptap but I want to know how to make Maxmind wotrk with CPVLab and how to pass parameter if ad network don't support parameter pass through like Jumptap

@Jordan, It's not complicated. You can pass parameters via your own tracking links and can call out them into your landing page. This can be done using PHP.
would you mind to show me How please.


02-09-2013 02:36 PM #10 h0mp (Member)

With the Maxmind ISP database you could do the following:

[PHP]
$ip = mysql_real_escape_string($_SERVER["REMOTE_ADDR"]);
$isp_name = get_isp($ip);

function get_isp($ip) {
$sql = "SELECT ISP FROM IP_ISP WHERE INET_ATON('$ip') BETWEEN `Start` AND `End` LIMIT 1";
$res = mysql_query($sql);

if ($res) {
if ( mysql_num_rows($res) > 0 ) {
$row = mysql_fetch_row($res);
return $row[0];
} else { return false;}
} else {
return false;
}
}
[/PHP]

On you page you can echo $isp_name where ever you need it.


02-09-2013 09:12 PM #11 francis (Member)

Thanks for the replies! I installed handset detection and it worked. https://www.handsetdetection.com/


Home > Paid Traffic Sources > Mobile