Mites on, löytyykö SMS-tuki myös n900-versiosta - kun en tuolta GPS sourceista löydä kuin serial datan ja networkin.
Entäs tuo network, missä muodossa tuo url pitää olla ja minkämuotoista paikkadataa sille pitää weppisivun palauttaa ?
<?php $cmd = $_GET["cmd"]; if($cmd == "set") { $fh = fopen("coord.txt", 'w') or die("can't open file"); $stringData = $_GET["gprmc"]; fwrite($fh, $stringData); fclose($fh); } else { $coord = file_get_contents('coord.txt'); echo $coord; } ?>