forked from matheusalmeidagp/projeto_teste
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gerar_pdf.php
49 lines (39 loc) · 1.43 KB
/
gerar_pdf.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
39
40
41
42
43
44
45
46
47
48
49
<?php
include_once('db/conexao.php');
include_once('pdf/mpdf.php');
$conn = Conexao::getInstance();
$sql_relatorio = "SELECT email, status FROM newsletter_email ORDER BY id";
$resultado_relatorio = mysqli_query($conn, $sql_relatorio);
// $rows_relatorio = mysqli_fetch_assoc($resultado_relatorio);
$corpo_relatorio = '';
while ($rows_relatorio = mysqli_fetch_array($resultado_relatorio)){
$corpo_relatorio = $corpo_relatorio . "<p>E-mail: ".$rows_relatorio['email']."</p>";
$status = '';
if ($rows_relatorio['status'] == 1) {
$status = 'Ativo';
}else{
$status = 'Inativo';
}
$corpo_relatorio = $corpo_relatorio . "<p>Status: ". $status ."</p> <br />";
}
$pagina = "
<!DOCTYPE html>
<html lang='pt-br'>
<head>
<meta charset='UTF-8'>
<title>Relatório</title>
</head>
<body>
<img src='images/faculdade_mauricio_nassau.jpeg' alt='Imagem da faculdade Maurício de Nassau'>
<h1>E-mail cadastrados</h1>
". $corpo_relatorio ."
</body>
</html>
";
$arquivo = "Relatorio.pdf";
$mpdf = new mPDF();
$mpdf->WriteHTML($pagina);
$mpdf->Output($arquivo, 'I');
// I - Arbre no navegador
// F - Salva no servidor
// D - Salva o arquivo no computador do usuário