Skip to content

Instantly share code, notes, and snippets.

@Lh4cKg
Created September 26, 2014 19:31
Show Gist options
  • Save Lh4cKg/87a6dbbfd970ff931a65 to your computer and use it in GitHub Desktop.
Save Lh4cKg/87a6dbbfd970ff931a65 to your computer and use it in GitHub Desktop.
<?php
if(isset($_GET['lat'])) {
$lat = trim($_GET['lat']);
}
if(isset($_GET['lon'])) {
$lon = trim($_GET['lon']);
}
if(isset($_GET['acc'])) {
$acc = trim($_GET['acc']);
}
echo $lat . " " . $lon . " " . $acc;
$fp = fopen('hello.txt', 'w');
fwrite($fp, $lat . ", " . $lon . ", " . $acc);
fclose($fp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment