-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshow.php
More file actions
20 lines (15 loc) · 810 Bytes
/
show.php
File metadata and controls
20 lines (15 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
echo 'Confirmation de votre réservation:
- Votre Nom : ' . $_POST['firstname'];
/*
- Votre Prenom : ' . $_POST['lastname'] . '<br>
- Votre email : ' . $_POST['email'] . '<br>
- Nombre de Personnes : ' .$_POST['peopleNumber'] . '<br>
- Votre adresse : ' . $_POST['address'] . '<br>
- Numéro de téléphone : ' .$_POST['phone'] . '<br>
- Date de Naissance : ' . $_POST['birthdate'] . '<br>
- Date de départ / heure de départ : ' . $_POST['departureDate'] . '<br>
- Date d\'arrivée / heure d\'arrivée : ' . $_POST['arrivalDate'] . '<br>
- Type de chambre ' . $_POST['bedroom'];
*/
?>