elektronisk-kadaver-tidtaki.../passing.php

18 lines
433 B
PHP
Raw Normal View History

2024-02-11 18:27:54 +00:00
<?php
2024-02-16 11:14:45 +00:00
$control = $_POST['control'];
2024-02-11 18:27:54 +00:00
$runner_id = $_POST['id'];
2024-02-12 20:23:13 +00:00
$time = $_POST['time'];
2024-10-27 17:15:45 +00:00
$password = $_POST['password'];
$hash = file_get_contents("hash.txt");
if (!password_verify($password, $hash)) {
http_response_code(response_code: 401);
}
else {
$file = 'passering.csv';
$current = file_get_contents($file);
$current .= $control . "," . $runner_id . "," . $time . "\n";
file_put_contents($file, $current);
}