Aggiunta nomi e email in tabella implementata

This commit is contained in:
2026-01-16 11:40:34 +01:00
parent 52749506a6
commit 3a0e5ecab0

View File

@@ -38,9 +38,10 @@ fclose($file);
</tr> </tr>
<?php <?php
for($i=0; $i<count($utenti); $i++){ for($i=0; $i<count($utenti); $i++){
echo "<tr><td>" . $utenti[$i]->id . "</td></tr>"; echo "<tr><td>" . $utenti[$i]->id . "</td><td>" . $utenti[$i]->name . "</td><td><a href=\"mailto:" . $utenti[$i]->email ."\">" . $utenti[$i]->email . "</a></td></tr>";
} }
?> ?>
</table> </table>
</body> </body>
</html> </html>