Files
crm.twinpol.com/modules/EcmSales/multiPdf.php

19 lines
419 B
PHP
Raw Normal View History

2025-05-12 15:44:39 +00:00
<?php
include "include/ECM/EcmMultiPdf/EcmMultiPdf.inc";
$db = $GLOBALS ['db'];
$docs = array ();
$res = $db->query ( "SELECT id FROM ecmsales ORDER BY date_entered DESC LIMIT 0,5" );
while ( $r = $db->fetchByAssoc ( $res ) ) {
$tmp = array ();
$tmp ['module'] = 'EcmSales';
$tmp ['record'] = $r ['id'];
$docs [] = $tmp;
}
var_dump($docs);
$mp = new EcmMultiPdf($docs, 'multi.pdf');
echo $r = $mp->process();
?>