18 lines
510 B
PHP
18 lines
510 B
PHP
<?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/intersantebicorprestation/flexcode/process_verification.php;http://localhost/intersantebicorprestation/flexcode/getac.php".";extraParams";
|
|
}
|
|
|
|
?>
|