11.26 php saved
jose.zap
Tags add more
 
Note
jose.zap did not leave a note
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <?php echo $html->charset();?>
  5.     <?php echo $scripts_for_layout; ?>
  6. </head>
  7. <body>
  8. <table class="header" style="width:100%;padding-left:50px;padding-right:50px">
  9. <tr>
  10.     <td><?php echo $pdf->image('cebolla.jpg'); ?></td>
  11.     <td style="text-align:right"><?php echo $pdf->image('decanato.jpg'); ?></td>
  12. </tr>
  13. </table>
  14. <p class="sender">Decanato de Estudios de Postgrado</p>
  15. <p class="sender">Coordinación de postgrado</p>
  16. <?php echo $content_for_layout;?>
  17. </body>
  18. </html>
  19. <?php
  20.     $output = ob_get_contents();
  21.     ob_end_clean();
  22.     $pdf->load_html($output);
  23.     $pdf->render();
  24.     $pdf->stream($title_for_layout.'.pdf');
  25.     exit;
  26. ?>
Parsed in 0.055 seconds, using GeSHi 1.0.7.14

Modify this Paste