mirror of
https://github.com/Hizenberg469/BPIT-ATTENDANCE.git
synced 2026-04-20 02:02:25 +03:00
initial commit
This commit is contained in:
33
yash/html/verify.php
Normal file
33
yash/html/verify.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
include('functions.php');
|
||||
|
||||
$lat=$_GET['latitude'];
|
||||
$hash=$lat;
|
||||
|
||||
|
||||
echo 'jumbled latitude';
|
||||
line_break();
|
||||
|
||||
for($x=0;$x<strlen($hash);$x++)
|
||||
{
|
||||
if($x==2)
|
||||
echo '.';
|
||||
echo $hash[$x];
|
||||
}
|
||||
|
||||
line_break();
|
||||
|
||||
echo 'unjumbled latitude';
|
||||
line_break();
|
||||
|
||||
$str=deCrypt($hash);
|
||||
for($x=0;$x<count($str);$x++)
|
||||
{
|
||||
if($x==2)
|
||||
echo '.';
|
||||
echo $str[$x];
|
||||
}
|
||||
line_break();
|
||||
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user