Initial commit for newdesigngestionnaire project

This commit is contained in:
2026-02-20 11:18:16 +00:00
commit 8757eaca01
14144 changed files with 3475356 additions and 0 deletions

19
flexcode/verification.php Executable file
View File

@@ -0,0 +1,19 @@
<?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";
}
?>