7 lines
200 B
PHP
Raw Normal View History

2024-02-11 19:27:54 +01:00
<?php
$runner_id = $_POST['id'];
2024-02-12 21:23:13 +01:00
$time = $_POST['time'];
2024-02-11 19:27:54 +01:00
$file = 'passering.csv';
$current = file_get_contents($file);
2024-02-12 21:23:13 +01:00
$current .= $runner_id . ", " . $time . "\n";
2024-02-11 19:27:54 +01:00
file_put_contents($file, $current);