5 lines
182 B
JavaScript
5 lines
182 B
JavaScript
document.onload = function () {
|
|
const response = fetch("/index.php?listfiles=1");
|
|
const tabulka = document.getElementById("tabulka");
|
|
tabulka.innerHTML = response.text;
|
|
} |