私がやろうとしているのは、FPDFを使用して複数のPDFファイルを作成して電子メールで送信することです。私はすでにすべてを1つのファイルに電子メールで送信するように機能していますが、すべてをループに入れようとすると、スクリプトはPDFの最初のインスタンスのみを出力し、空白の画面に終了します。これは、1つのレコードのみを処理している場合は完全に実行されますが、複数を追加すると、1回だけ実行されます。私は本当にここで何をすべきか理解できません私のコードです。任意の支援または指示をいただければ幸いです。
while ($data = mysql_fetch_row($query)) // under normal circumstances working properly
{
$clientid = $data['0'];
if($clientid)
{
require("generatepdf.php"); //styles the pdf and is working properly
$savepath = 'c:/ledgers/'.$cname.' Cash Ledger.pdf';
$pdf->Output($savepath,'F');
require("ledgeremail.php"); //runs query to get email address and emails the outputted file
}
}
これが私のpdf生成コードの要点であり、生成の詳細は省略されています。
<?php
require("includes/pdf/fpdf.php");
{
$pdf = new FPDF( );
$pdf->AddPage();
$pdf->SetFont('Arial','',16);
//Run Query to get Ledger information for the $clientid variable
//Pass information from query into the different variables throughout script
//Print Document Title
$pdf->Cell(0,10,$cname.' Petty Cash Ledger', 0,1,'L');
//Print First Month Grouping
$pdf->SetFont('Arial','',10);
$pdf->Line($linestart,$pdf->GetY(),$lineend,$pdf->GetY());
$pdf->Cell(10,5,$startmonth.", ".$startyear, 0,0,'L');
$pdf->SetX(175);
$pdf->SetFont('','B');
$pdf->Cell(20,5,'Balance Forward: $'.$balforward, 0,1,'R');
$pdf->SetFont('');
//print group headers
$pdf->SetTextColor(101,102,102);
$pdf->Cell(30,5,'Date',0,0,'L');
$pdf->SetX(30);
$pdf->Cell(105,5,'Description', 0,0,'L');
$pdf->SetX(135);
$pdf->Cell(20,5,'Deposit', 0,0,'R');
$pdf->SetX(155);
$pdf->Cell(20,5,'Withdrawl', 0,0,'R');
$pdf->SetX(175);
$pdf->Cell(20,5,'Balance', 0,1,'R');
$pdf->SetTextColor(0,0,0);
$pdf->SetFillColor(255);
while($ledger = mysql_fetch_row($ledgerqry))
{
if ($grey == 1) $pdf->SetFillColor(225);
$currentmonth = date('F',strtotime($data[0]));
if ($currentmonth != $startmonth)
{
$pdf->SetFillColor(255);
$grey = 0;
$currentyear = date('Y',strtotime($data[0]));
//Print Month End Balance
$pdf->SetX(175);
$pdf->SetFont('','B');
$pdf->Cell(20,5,'Ending Balance: '.$runningbal, 0,1,'R',1);
$pdf->SetFont('');
$pdf->Line($linestart,$pdf->GetY()+2,$lineend,$pdf->GetY()+2);
//Print Month Grouping
$pdf->Cell(10,10,$currentmonth.", ".$currentyear, 0,0,'L');
$pdf->SetX(175);
$pdf->SetFont('','B');
$pdf->Cell(20,10,"Balance Forward: ".$runningbal, 0,1,'R');
$pdf->SetFont('');
//print group headers
$pdf->SetTextColor(101,102,102);
$pdf->Cell(30,5,'Date',0,0,'L');
$pdf->SetX(30);
$pdf->Cell(105,5,'Description', 0,0,'L');
$pdf->SetX(135);
$pdf->Cell(20,5,'Deposit', 0,0,'R');
$pdf->SetX(155);
$pdf->Cell(20,5,'Withdrawl', 0,0,'R');
$pdf->SetX(175);
$pdf->Cell(20,5,'Balance', 0,1,'R');
$pdf->SetTextColor(0,0,0);
$startmonth = $currentmonth;
}
//Create line Variables
$tdate = date('m/d/Y',strtotime($ledger[0]));
$tdescription = $ledger[2];
if($ledger[3]==0) $tdeposit = ""; else $tdeposit = "$".number_format($ledger[3], 2, '.', ',');
if($ledger[4]==0) $twithdrawl = ""; else $twithdrawl = "($".-1*number_format($ledger[4], 2, '.', ',').")";
$runningbal = "$".number_format($balforward + $ledger[5], 2, '.', ',');
$pdf->Cell(30,7,$tdate, 0,0,'L',1);
$pdf->SetX(30);
$pdf->Cell(105,7,$tdescription, 0,0,'L',1);
$pdf->SetX(135);
$pdf->Cell(20,7,$tdeposit, 0,0,'R',1);
$pdf->SetX(155);
$pdf->Cell(20,7,$twithdrawl, 0,0,'R',1);
$pdf->SetX(175);
$pdf->Cell(20,7,$runningbal, 0,1,'R',1);
if ($grey == 1)
{
$pdf->SetFillColor(255);
$grey = 0;
}
else $grey = 1;
}
//Create Final balance
$pdf->SetFillColor(255);
$pdf->SetX(175);
$pdf->SetFont('','B');
$pdf->Cell(20,5,'Ending Balance: '.$runningbal, 0,1,'R',1);
$pdf->SetFont('');
}
}
}
?>