Skip to content

Commit

Permalink
Update AffichageRDV.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahddry committed May 28, 2022
1 parent 5a7f8ed commit 6785e24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AffichageRDV.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
function effacer(t) {


if(confirm("Voullez vous annulez ce rendez-vous?"))
if(confirm("Voulez vous annulez ce rendez-vous?"))
{
let date = event.target.getAttribute('data-arg1');
document.cookie = "DateEff=" + date+ "; SameSite=None; Secure";
Expand Down Expand Up @@ -81,7 +81,7 @@ function effacer(t) {
echo ('<div class="detailsProfil">');
echo('<div class="titre">');
echo('Votre practicien : <br>');
echo($data[0]["Nom"] . $data[0]["Prenom"]);
echo($data[0]["Prenom"] . " ". $data[0]["Nom"]);
echo ('</div>');
echo ('<div class="photoProfil">');
echo ('<img src="' . $data[0]["pp"] . '" class="image">');
Expand Down

0 comments on commit 6785e24

Please sign in to comment.