Endra navn på api
This commit is contained in:
parent
35df188cf6
commit
3ec19dd4cb
@ -21,7 +21,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2>Vi tar forbehold om feil. Dette er ikke offisielle resultater</h2>
|
<h2>Vi tar forbehold om feil. Dette er ikke offisielle resultater</h2>
|
||||||
<?php
|
<?php
|
||||||
include("get_table.php")
|
include("table.php")
|
||||||
?>
|
?>
|
||||||
<footer>
|
<footer>
|
||||||
<h3>Laget av Trygve. <a href="https://git.willy.club/Trygve/elektronisk-kadaver-tidtakingssystem">Kildekode</a></h3>
|
<h3>Laget av Trygve. <a href="https://git.willy.club/Trygve/elektronisk-kadaver-tidtakingssystem">Kildekode</a></h3>
|
||||||
@ -30,7 +30,7 @@ include("get_table.php")
|
|||||||
<script>
|
<script>
|
||||||
function update() {
|
function update() {
|
||||||
const table = document.querySelector("table");
|
const table = document.querySelector("table");
|
||||||
const myRequest = new Request(`get_table.php`);
|
const myRequest = new Request(`table.php`);
|
||||||
fetch(myRequest)
|
fetch(myRequest)
|
||||||
.then((response) => response.text())
|
.then((response) => response.text())
|
||||||
.then((text) => {
|
.then((text) => {
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<h2>Oppdatert 13.10.24</h2>
|
<h2>Oppdatert 13.10.24</h2>
|
||||||
<?php
|
<?php
|
||||||
$query = ["paameldte"];
|
$query = ["paameldte"];
|
||||||
include("get_table.php");
|
include("table.php");
|
||||||
?>
|
?>
|
||||||
<footer>
|
<footer>
|
||||||
<h3>Laget av Trygve. <a href="https://git.willy.club/Trygve/elektronisk-kadaver-tidtakingssystem">Kildekode</a></h3>
|
<h3>Laget av Trygve. <a href="https://git.willy.club/Trygve/elektronisk-kadaver-tidtakingssystem">Kildekode</a></h3>
|
||||||
|
@ -77,7 +77,7 @@ function register_runner(id) {
|
|||||||
formData.append(name= 'id', value=id);
|
formData.append(name= 'id', value=id);
|
||||||
time = new Date(Date.now()).toISOString().split('.')[0]+"Z"
|
time = new Date(Date.now()).toISOString().split('.')[0]+"Z"
|
||||||
formData.append('time', time);
|
formData.append('time', time);
|
||||||
response = fetch("post.php", {
|
response = fetch("passing.php", {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
body: formData,
|
body: formData,
|
||||||
})
|
})
|
||||||
@ -132,7 +132,7 @@ function update_row(id, name, passed) {
|
|||||||
function update() {
|
function update() {
|
||||||
const table = document.getElementById("runners");
|
const table = document.getElementById("runners");
|
||||||
control = get_control();
|
control = get_control();
|
||||||
const myRequest = new Request(`get_table.php?registrering,`+control);
|
const myRequest = new Request(`table.php?registrering,`+control);
|
||||||
fetch(myRequest)
|
fetch(myRequest)
|
||||||
.then((response) => response.text())
|
.then((response) => response.text())
|
||||||
.then((text) => {
|
.then((text) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user