13 lines
355 B
PHP
13 lines
355 B
PHP
|
|
<?php
|
||
|
|
$db=$GLOBALS['db'];
|
||
|
|
ini_set('display_errors',1);
|
||
|
|
ini_set('max_execution_time',9999);
|
||
|
|
$zap=$db->query("select id from ecmnoteouts");
|
||
|
|
echo $zap->num_rows.'<br>';
|
||
|
|
while($dane=$db->fetchByAssoc($zap)){
|
||
|
|
echo '"'.$dane['id'].'",';
|
||
|
|
$_REQUEST['record'] = $dane['id'];
|
||
|
|
$_REQUEST['file']=1;
|
||
|
|
require ("modules/EcmNoteOuts/createPDF.php");
|
||
|
|
}
|
||
|
|
?>
|