Add initial implementation of Fantacalcio application

This commit is contained in:
Simone
2026-03-07 17:15:34 +01:00
parent 6e74a538ea
commit dc6fc7b7e0
41 changed files with 2086 additions and 0 deletions
Executable
+12
View File
@@ -0,0 +1,12 @@
<?php
$squadre = json_decode(file_get_contents('squadre.json'), true);
$giocatori = json_decode(file_get_contents('giocatori.json'), true);
$voti = json_decode(file_get_contents('voti.json'), true);
$partite = json_decode(file_get_contents('partite.json'), true);
?>
<script>
const squadre = <?php echo json_encode($squadre); ?>;
const giocatori = <?php echo json_encode($giocatori); ?>;
const voti = <?php echo json_encode($voti); ?>;
const partite = <?php echo json_encode($partite); ?>;
</script>