Código PHP:
<?php
session_start();
include('conect.php');
$numeroid_r=$_SESSION['numeroid_r'];
$rs_r="select nombres,apellidos,documentoid ,numeroid,estado,nacionalidad,reporte from solicitante where numeroid='$numeroid_r':: character Varying ";
$busqueda_r=pg_query($rs_r);
$resultado_r=pg_fetch_array($busqueda_r);
$mesesArray = array('','Enero','Febrero','Marzo','Abril','Mayo', 'Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre');
$diasArray = array('','uno','dos','tres','cuatro','cinco', 'seis','siete','ocho','nueve','diez','once','doce','trece','catorce','quince','dieciseis','diecisiete',
'dieciocho','diecinueve','veinte','veintiuno','veintidos','veintitrés','veinticuatro','veinticinco','veintiséis','veintisiete','veintiocho','veintinueve','treinta','treinta y uno' );
$mes= date('n');
$dia=date('j');
$año=date('Y');
$mes_l=$mesesArray[$mes];
$dia_l=$diasArray[$dia];
$ciudadano=$resultado_r['nacionalidad'];
$nombres=$resultado_r['nombres'];
$apellidos=$resultado_r['apellidos'];
$numero_documento_id=$resultado['numeroid'];
$documento_id=$resultado_r['documentoid'];
$estado=$resultado_r['estado'];
$reporte=$resultado_r['reporte'];
pg_close($conexion);
$html = "
<header>
<img style='display:block;margin:0 auto 0 auto' alt='reporte_banner.png' src='reporte_banner.png' >
</header>
<p align='center'> <b>Nro:$reporte</b></p>
<p align=justify> <b> $ciudadano , $nombres $apellidos</b> portador de
<b>$documento_id</b> Nro:<b>$numero_documento_id</b>, ha solicitado refugio </p>
<br>
<br>
<br>
<br>
<footer>
<img style='display:block;margin:0 auto 0 auto' src='piepdf.png' >
</footer>
";
$html=utf8_encode($html);
//==============================================================
//==============================================================
//==============================================================
include("mpdf/mpdf.php");
$mpdf=new mPDF();
$mpdf->WriteHTML($html);
$mpdf->Output();
exit;
//==============================================================
//==============================================================
//==============================================================
?>