14 lines
335 B
PHP
Executable File
14 lines
335 B
PHP
Executable File
<?php
|
|
|
|
$fichier="Temp_test/TMP_facture_garant"."_".uniqid().".pdf";
|
|
$pdf->Output($fichier,"F");
|
|
|
|
$t_html =' <div id ="div_export_a" class="alert alert-info"> ';
|
|
$t_html .=' <a style="font-size:15pt;" href="'.$fichier.'" target="_blank" > '._("DOWNLOAD").' </a> ';
|
|
$t_html .=' </div ';
|
|
echo $t_html;
|
|
|
|
exit();
|
|
|
|
|