Ok here's what I want:
I need something like a Javascript or PHP script to get a gps location from a visitor, and then secretly send it to me (I won't use this bad, it's for an website that prevents my iPhone from being stolen)
I want that if a thief opens the website (which I will webclip, name Safari and give the safari icon) I automatically get his location and he's redirected to google or something else
So basically like this:
navigator.geolocation.getCurrentPosition(GetLocation);
function GetLocation(location) {
//Some script that sends the location secretly to me
}
{
windows.location="http://google.com";
}