query ( $query ); $workers = [ ]; while ( $dane = $db->fetchByAssoc ( $res ) ) { $workers [] = $dane; } $ss = new Sugar_Smarty (); $ss->assign ( "workers", $workers ); $ss->assign ( "time", $_REQUEST['date_from'] ); $date = new DateTime($_REQUEST['date_from']); $date->modify('+1 day'); $ss->assign ( "time2", $date->format("d.m.Y")); $content = $ss->fetch ( "modules/EcmWorkCosts/tpl/WydrukKartyPracy.html" ); include_once ("include/MPDF57/mpdf.php"); $p = new mPDF ( '', 'A4', null, 'helvetica', 10, 10, 0, 0, 5, 5 ); $p->WriteHTML ( $content ); $p->Output ('karty_pracy.pdf', 'I'); } else { ?>