production/flexcode/verification.php
2025-12-01 16:12:12 +00:00

19 lines
474 B
PHP
Executable File

<?php
if (isset($_GET['user_id']) && !empty($_GET['user_id']))
{
include 'include/global.php';
include 'include/function.php';
$user_id = $_GET['user_id'];
$finger = getUserFinger($user_id);
$succes = "9";
updateJeton($user_id, $succes);
echo "$user_id;".$finger[0]['finger_data'].";SecurityKey;".$time_limit_ver.";http://localhost/intersantebicor/flexcode/process_verification.php;http://localhost/intersantebicor/flexcode/getac.php".";extraParams";
}
?>