ต้องการเอาข้อมูลมาคำนวณกันแล้วแสดงผลเป็น PDF
โดยตอนนี้สามารถแสดงผลโดย select จาก db ได้แล้ว แต่มันยังคำนวณไม่ได้
รบกวนช่วยดูให้หน่อยน่ะค่ะว่าต้องเพิ่มตรงไหน
ขอบคุณค่ะ
Code (PHP)
<?php
require('fpdf.php');
class PDF extends FPDF
{
//Load data
function LoadData($file)
{
//Read file lines
$lines=file($file);
$data=array();
foreach($lines as $line)
$data[]=explode(';',chop($line));
return $data;
}
//Simple table
function BasicTable($header,$data)
{
//Header
$w=array(20,20,20);
//Header
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C');
$this->Ln();
//Data
foreach ($data as $eachResult)
{
$this->Cell(20,6,$eachResult["total"],1,0,'R');
$this->Cell(20,6,$eachResult["pay"],1,0,'R');
$this->Cell(20,6,$eachResult["ค้างจ่าย"],1,0,'R');//บรรทัดนี้อ่ะค่ะ ต้องใส่ยังไงให้มันคำนวณโดยเอา total - pay
$this->Ln();
}
}
}
$pdf=new PDF();
//Column titles
$header=array('total','pay','ค้างจ่าย');
//Data loading
//*** Load MySQL Data ***//
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("viriyah");
mysql_query("SET NAMES TIS620");
$strSQL = "SELECT * FROM member";
$objQuery = mysql_query($strSQL);
$resultData = array();
for ($i=0;$i<mysql_num_rows($objQuery);$i++) {
$result = mysql_fetch_array($objQuery);
array_push($resultData,$result);
}
//************************//
$pdf->AddFont('angsa','','angsa.php');
$pdf->SetFont('angsa','',14);
//*** Table 1 ***//
$pdf->AddPage();
$pdf->Ln(35);
$pdf->Image('pic/report.jpg',20,5,180);
$pdf->BasicTable($header,$resultData);
$pdf->Output("MyPDF/MyPDF.pdf","F");
?>