Where does the tracking info go?

SO I enabled http tracking and I have it set to go to your site
http://navigami.com/navigation/sendpos.php

what does your site do with the info? Can we see it on here?

Thanks

Doing some work on this

I am doing some server side stuff on this.

Just visit : http://www.sheepgames.co.cc/track/
to set up the URL's you will need

No registration required. Shows in realtime the GPS location sent out by the phone!

Until Navigami gets their serverside working I think it's a good alternative that I've set up. Hope I can help or at least intrest you guys.

Sadly the .co.cc domain I have is currently Out Of Action. When it comes online I will copy the code across and keep this code. These domains will remain compatible!
I'm still working on this. Try it out tell me what you think.

serverside

the serverside is not implemeted yet and data are not handled. it will come later. but you can change the url and send it to your server.

how can i track the data on

how can i track the data on my server? what must be there in the *.php script?

tracking server

Http data is sent via Http POST with encoding "application/x-www-form-urlencoded".
lat - latitude in format dd:mm:ss.ss
lon - latitude in format dd:mm:ss.ss
alt - altitude in meters
speed - speed in meters per second
course - in degrees 0-359
time - timestamp in miliseconds since midnight, January 1, 1970 UTC

you may simply read these data and use. more than one position can be sent, it depends on settings.

simple php code

Hi!

I wrote a simple php code (cod.php):

<?php
$lat = $_POST['lat'];
$lon = $_POST['lon'];
$alt = $_POST['alt'];
$speed = $_POST['speed'];
$course = $_POST['course'];
$time = $_POST['time'];

echo "GPS info: ". $lat . " " . $lon . " " . $alt . " " . $speed . " " . $course . " " . $alt . ".";

?>

Is it correct? My php file's location is: http://home.sch.bme.hu/korda/gps/cod.php
When I set this url in the "send location" menu and press send http, then the app show this message: "sending failed : null"

Any idea why goes wrong?
Anyway your program is very good!