-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofilepatient.php
38 lines (36 loc) · 1.49 KB
/
profilepatient.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php include 'header.php'; ?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Profil du patient</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Profil du patient</h1>
<div id="patient-profile">
<!-- Les détails du patient seront ajoutés ici par JavaScript -->
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
const patients = JSON.parse(localStorage.getItem('patients')) || [];
const urlParams = new URLSearchParams(window.location.search);
const patientId = urlParams.get('patient_id') - 1; // L'index dans le tableau commence à 0
if (patients[patientId]) {
const patient = patients[patientId];
const patientProfile = document.getElementById('patient-profile');
patientProfile.innerHTML = `
<h2>${patient.nom} ${patient.prenom}</h2>
<p>Date de naissance: ${patient.date_naissance}</p>
<p>Adresse: ${patient.adresse}</p>
<p>Condition médicale: ${patient.condition_medical}</p>
<p>Téléphone: ${patient.telephone}</p>
<button onclick="window.location.href='listepatient.php'">Retour</button>
`;
} else {
document.getElementById('patient-profile').innerText = 'Patient non trouvé.';
}
});
</script>
</body>
</html>