mirror of
https://github.com/Hizenberg469/BPIT-ATTENDANCE.git
synced 2026-04-19 17:52:25 +03:00
14 lines
152 B
PHP
14 lines
152 B
PHP
<?php
|
|
include('functions.php');
|
|
|
|
|
|
$lat=28.4950;
|
|
$long=77.1031;
|
|
|
|
$latA=28.5737;
|
|
$latB=77.0710;
|
|
|
|
echo haversine($lat,$long,$latA,$latB);
|
|
|
|
|
|
?>
|