コード例 #1
0
ファイル: PdfController.php プロジェクト: vvvhh/not
 public static function imprimirRepresentantes()
 {
     $seleccionar = ResponsableController::consultasResponsables();
     $cuerpoTabla = '';
     $i = 0;
     $periodo = "";
     $fecha = PDFController::getFecha();
     foreach ($seleccionar as $value) {
         $i = $i + 1;
         $resNombre = $value['resNombre'];
         $resCorreo = $value['resCorreo'];
         $cuerpoTabla = $cuerpoTabla . '<tr>
         <td width="3%" >
           <div align="center">
           <CODE  style="font-size: 80%;">' . $i . '</code>
           </div>
         </td>
         <td>
           <div align="center">
           <CODE>' . $resNombre . '</code>
           </div>
         </td>
         <td>
           <div align="center">
           <CODE>' . $resCorreo . '</code>
           </div>
         </td>
       </tr>';
     }
     $html = '<html><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><body>' . '<h5 align="right">Sistema de Noticias </h5><h5 align="right">Vázquez Hernández Contadores, S.C.</h5>' . '<h3 align="center">Representantes de Equipo</h3>' . '<table cellspacing="0"  border="1" align="center" width="400" >
     <tbody >
       <tr>
         <td width="3%" >
           <div align="center">
           </div>
         </td>
         <td width="20%" >
           <div align="center">
             <h5><strong>Nombre</strong> </h5>
           </div>
         </td>
         <td width="20%" >
           <div align="center">
             <h5><strong>Correo</strong> </h5>
           </div>
         </td>
       </tr>' . $cuerpoTabla . '</tbody
    </table>' . '<br><p> Fecha de generación:  <CODE>' . $fecha . '</CODE></p>' . '</body></html>';
     return PDF::load($html, 'letter', 'portrait')->show();
 }