1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
....// code pour générer le document
header('Content-Disposition: attachment; filename=rapport_' . time() . '_' . $libellecentrale . '.doc');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
$filename = "../templates/template.html";
//Ouverture du template
$fp = fopen($filename, 'r');
$content = fread($fp, filesize($filename));
$logolabo = 'https://' . $_SERVER['HTTP_HOST'] . '/' . REPERTOIRE . $logolabo . '';
$content = str_replace('##repertoire##', '/' . REPERTOIRE . '/', $content);
..... etc....
echo utf8_decode($content);
// EXTRAIT DU TEMPLATE
<td style='width:25%;' >
<img height=##heightLogoLab## width=##widthLogoLab## src=##LOGOLABO## align="left" >
</td> |
Partager