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
I can't see how the device model is transmitted only that its mobile and the OS used.
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.
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
use the Maxmind database - you can use the same one you are using for the STM add-on for Prosper
@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.
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.
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
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.
Thanks for the replies! I installed handset detection and it worked. https://www.handsetdetection.com/