tabella per classifica completa di tutte le partite
This commit is contained in:
+16
-18
@@ -4,31 +4,29 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Classifica completa</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: "Arial";
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
td {
|
||||
|
||||
border: 1px solid black;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="classifica.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Classifica</h1>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Posizione</td>
|
||||
<td>Nome</td>
|
||||
<td>Punteggio 1° fase</td>
|
||||
<td>Punteggio 2° fase</td>
|
||||
<td>Punteggio totale</td>
|
||||
<td>Data di gioco</td>
|
||||
<th>Posizione</th>
|
||||
<th>Nome</th>
|
||||
<th>Punteggio 1° fase</th>
|
||||
<th>Punteggio 2° fase</th>
|
||||
<th>Punteggio totale</th>
|
||||
<th>Data di gioco</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
require 'db.php';
|
||||
foreach ($db_test as $posizione => $record) {
|
||||
riga($posizione, $record);
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user