From 5b18c407bed23fdca9f5b53234bcc34a1e1892ee Mon Sep 17 00:00:00 2001 From: lantz14u <nathan.lantz1@etu.univ-lorraine.fr> Date: Tue, 2 Jan 2024 16:48:04 +0100 Subject: [PATCH] Modif download --- DLdossier.php | 6 +++--- DLprogramme.php | 6 +++--- DLrdv.php | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/DLdossier.php b/DLdossier.php index 6d56751..26515a8 100644 --- a/DLdossier.php +++ b/DLdossier.php @@ -10,8 +10,8 @@ $query = $connexion->query($sql); $pdf = new TCPDF(); -$pdf->SetCreator('Club de Foot'); -$pdf->SetAuthor('Club de Foot'); +$pdf->SetCreator('Club MatchZéro'); +$pdf->SetAuthor('Club MatchZéro'); $pdf->SetTitle('Dossiers d\'Inscription - Club MatchZéro'); $pdf->SetMargins(10, 10, 10); @@ -54,7 +54,7 @@ $html .= '</table>'; $pdf->writeHTML($html, true, false, true, false, ''); -$file_name = 'Dossiers_Inscription_Club_Foot.pdf'; +$file_name = 'Dossiers_Inscription_Club_MatchZéro.pdf'; $pdf->Output($file_name, 'D'); ?> \ No newline at end of file diff --git a/DLprogramme.php b/DLprogramme.php index cf145ef..35a9a2a 100644 --- a/DLprogramme.php +++ b/DLprogramme.php @@ -11,8 +11,8 @@ date_default_timezone_set('Europe/Paris'); require_once('TCPDF-main/tcpdf.php'); $pdf = new TCPDF(); -$pdf->SetCreator('Club de Foot'); -$pdf->SetAuthor('Club de Foot'); +$pdf->SetCreator('Club MatchZéro'); +$pdf->SetAuthor('Club MatchZéro'); $pdf->SetTitle('Programmes du Club MatchZéro'); $pdf->SetMargins(10, 10, 10); @@ -41,7 +41,7 @@ $html .= '</table>'; $pdf->writeHTML($html, true, false, true, false, ''); -$nom_fichier = 'Programmes_Club_Foot.pdf'; +$nom_fichier = 'Programmes_Club_MatchZéro.pdf'; $pdf->Output($nom_fichier, 'D'); ?> \ No newline at end of file diff --git a/DLrdv.php b/DLrdv.php index 33cb6ae..c679ef0 100644 --- a/DLrdv.php +++ b/DLrdv.php @@ -10,8 +10,8 @@ $query = $connexion->query($sql); $pdf = new TCPDF(); -$pdf->SetCreator('Club de Foot'); -$pdf->SetAuthor('Club de Foot'); +$pdf->SetCreator('Club MatchZéro'); +$pdf->SetAuthor('Club MatchZéro'); $pdf->SetTitle('Planifications des Matchs - Club MatchZéro'); $pdf->SetMargins(10, 10, 10); @@ -38,6 +38,6 @@ $html .= '</table>'; $pdf->writeHTML($html, true, false, true, false, ''); -$file_name = 'Planifications_Matchs_Club_Foot.pdf'; +$file_name = 'Planifications_Matchs_Club_MatchZéro.pdf'; $pdf->Output($file_name, 'D'); \ No newline at end of file -- GitLab