Home » Archive

Articles tagged with: Cell Track

Cell track, Featured, GSM Localizer without GPS »

[18 Sep 2011 | 6 Comments | 10,391 views]
How to find the location with GSM cells

Discover how to find the coordinate from the GSM cells!!
 
The PHP code to find the coordinates from GSM cells
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Tracking cell by Boris Landoni Example</title>

<?php

function geturl()
{

if ($_REQUEST["myl"] != "") {
$temp = split(":", $_REQUEST["myl"]);
$mcc = substr("00000000".($temp[0]),-8);
$mnc = substr("00000000".($temp[1]),-8);
$lac = substr("00000000".($temp[2]),-8);