FPDF ファイルで select ステートメントを使用してデータベースから情報を表示する際に問題が発生しています。2 つのファイルを作成しました。最初のファイルでは、ユーザーが DonorID を入力し、請求書の作成をクリックします。このファイルは、pdf ファイルを作成して請求書を表示する fpdf ファイルを指します。結果を生成していないように見えるselectステートメントがあります。それ以外はすべて正しく表示されますが、テーブルにはデータベースからの情報が表示されません。
createinvoice.php と呼ばれる最初のファイルは次のとおりです。
<!DOCTYPE html>
<html>
<title> Create Invoice Page</title>
<head>
</head>
<body>
<h1>Create Invoice</h1>
<form action="invoicereportpdf.php" method="POST">
<p>Create an invoice by typing in the Donor ID</BR>
Donor ID: <input type= "text" name="donorid" size="15"/></br>
<br>
<div id="container" style="width:900px">
<br>
<input type= "submit" name= "submit" value="Create Invoice"/>
<?php include '/html/includedonations.php'; ?>
</div>
</body>
</html>
これは、invoicereportpdf.php という名前の最初のファイルによって呼び出される 2 番目のファイルです。
<?php
define('FPDF_FONTPATH','font/');
require('mysql_table.php');
class PDF extends PDF_MySQL_Table
{
function Header()
{
//Title
$this->SetFont('Arial','',14);
$this->Cell(0,6,'Invoice',0,1,'C');
$this->Ln(10);
$this->Cell(0,6,'From',0,1,'C');
$this->Ln(12);
$this->Cell(0,6,'Vetsports.org',0,1,'C');
$this->Ln(14);
$this->Cell(0,6, 'Thank you for your donation to Vetsports.org, your
donation is greatly appreciated.',0,1,'L');
$this->Ln(16);
$this->Cell(0,6, 'Please keep this receipt for your tax
purposes.',0,1,'L');
$this->Ln(16);
//Ensure table header is output
parent::Header();
}
}
//Connect to database
mysql_connect('localhost','root','');
mysql_select_db('charitabledb');
$donorid=$_POST['donorid'];
$pdf=new PDF();
$pdf->Open();
$pdf->AddPage();
//table: specify 4 columns
$pdf->AddCol('ID',15,'ID','C');
$pdf->AddCol('date',15,'Date','C');
$pdf->AddCol('donorid',25,'Donor ID','C');
$pdf->AddCol('firstname',25,'First Name','L');
$pdf->AddCol('lastname',25,'Last Name','L');
$pdf->AddCol('paymenttype',35,'Payment Type','L');
$pdf->AddCol('organization',30,'Organization','L');
$pdf->AddCol('Income',40,'Amount Donated','L');
$prop=array('HeaderColor'=>array(255,150,100),
'color1'=>array(210,245,255),
'color2'=>array(255,255,210),
'padding'=>2);
$pdf->Table('select ID,date,donorid,firstname,lastname,paymenttype,organization,Income from donations where donorid="$donorid" order by date ',$prop);
$pdf->Output();
?>