first commit
This commit is contained in:
commit
d975e212f9
35 changed files with 813 additions and 0 deletions
26
prestito/conferma.php
Normal file
26
prestito/conferma.php
Normal 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"] ?>€</p>
|
||||
<p>Durata: <?php if($_SESSION["prestito"] == 1) echo "Prestito Mensile"; else echo "Prestito Annuale"?></p>
|
||||
</div>
|
||||
|
||||
<?php require "includes/footer.php" ?>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue