first commit

This commit is contained in:
Bildcraft1 2024-10-31 10:47:12 +01:00
commit d975e212f9
35 changed files with 813 additions and 0 deletions

26
prestito/conferma.php Normal file
View file

@ -0,0 +1,26 @@
<?php
session_start();
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Conferma</title>
<?php require "includes/head.php" ?>
</head>
<body>
<div class="container">
<h1>Riepilogo del Prestito</h1>
<p>Nome: <?= $_SESSION["nome"] ?></p>
<p>Cognome: <?= $_SESSION["cognome"] ?></p>
<p>Prestito: <?= $_SESSION["cifra"] ?>&euro;</p>
<p>Durata: <?php if($_SESSION["prestito"] == 1) echo "Prestito Mensile"; else echo "Prestito Annuale"?></p>
</div>
<?php require "includes/footer.php" ?>
</body>
</html>