Skip to content

Instantly share code, notes, and snippets.

@guweigang
Last active August 29, 2015 14:22
Show Gist options
  • Save guweigang/edc65f1d4fb63a44ce40 to your computer and use it in GitHub Desktop.
Save guweigang/edc65f1d4fb63a44ce40 to your computer and use it in GitHub Desktop.
<?php
public function createPdf()
{
$this->view->disable();
$userId = $this->request->getPost('bbb');
$rez['rez'] = Users::findFirstById($userId)
$html = $this->view->getRender('reports', 'pdf_report', $rez);
$pdf = new mPDF();
$pdf->WriteHTML($html, 2);
$br = rand(0, 100000);
$ispis = "Pobjeda Rudet-Izvjestaj-".$br;
$pdf->Output($ispis, "I");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment