La til løpertabell
This commit is contained in:
parent
751e4c2425
commit
7f182932a7
66
index.php
66
index.php
@ -1,17 +1,67 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="no">
|
<html lang="no">
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
.passed {
|
||||||
|
background-color: #8ff0a4;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<table>
|
||||||
|
<tbody id="runners">
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
<script>
|
<script>
|
||||||
function register_runner(id) {
|
function register_runner(id, name) {
|
||||||
|
update_row(id, name, true)
|
||||||
|
let formData = new FormData();
|
||||||
|
formData.append(name= 'id', value=id);
|
||||||
|
time = new Date(Date.now()).toISOString()
|
||||||
|
formData.append('time', time);
|
||||||
fetch("upload.php", {
|
fetch("upload.php", {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
body: 'id='+id,
|
body: formData,
|
||||||
headers: {
|
|
||||||
"Content-type": "application/x-www-form-urlencoded"
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function read_db() {
|
||||||
|
let xmlHttp = new XMLHttpRequest();
|
||||||
|
xmlHttp.open("GET", "db.csv", false);
|
||||||
|
xmlHttp.send(null);
|
||||||
|
return xmlHttp.responseText;
|
||||||
|
}
|
||||||
|
|
||||||
|
function create_row(id, name, passed) {
|
||||||
|
if (!passed) {
|
||||||
|
button = `<button onclick="register_runner(${id}, '${name}')">✓</button>`
|
||||||
|
return `<tr id="${id}"><td>${id}</td><td>${name}</td><td>${button}</td></tr>`
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
button = `<button onclick="register_runner(${id}, '${name}')">Angre</button>`
|
||||||
|
return `<tr id="${id}" class="passed"><td>${id}</td><td>${name}</td><td>${button}</td></tr>`
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function create_rows(csv) {
|
||||||
|
csv = csv.split('\n')
|
||||||
|
rows = ""
|
||||||
|
for (i in csv) {
|
||||||
|
data = csv[i].split(",")
|
||||||
|
rows += create_row(data[0], data[1], false)
|
||||||
|
}
|
||||||
|
return rows
|
||||||
|
}
|
||||||
|
|
||||||
|
function update_row(id, name, passed) {
|
||||||
|
row = document.getElementById(id)
|
||||||
|
row.innerHTML = create_row(id, name, passed)
|
||||||
|
row.classList.add("passed");
|
||||||
|
}
|
||||||
|
table = document.getElementById("runners")
|
||||||
|
table.innerHTML = create_rows(read_db())
|
||||||
</script>
|
</script>
|
||||||
<body>
|
|
||||||
<button onclick="register_runner('121321321')">registrer!</button>
|
|
||||||
</body>
|
|
||||||
<html>
|
<html>
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
$runner_id = $_POST['id'];
|
$runner_id = $_POST['id'];
|
||||||
print_r($_POST);
|
$time = $_POST['time'];
|
||||||
$file = 'passering.csv';
|
$file = 'passering.csv';
|
||||||
$current = file_get_contents($file);
|
$current = file_get_contents($file);
|
||||||
$current .= $runner_id . "\n";
|
$current .= $runner_id . ", " . $time . "\n";
|
||||||
file_put_contents($file, $current);
|
file_put_contents($file, $current);
|
Loading…
Reference in New Issue
Block a user