This commit is contained in:
2024-02-11 19:27:54 +01:00
commit 751e4c2425
3 changed files with 259 additions and 0 deletions

7
upload.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
$runner_id = $_POST['id'];
print_r($_POST);
$file = 'passering.csv';
$current = file_get_contents($file);
$current .= $runner_id . "\n";
file_put_contents($file, $current);