|
|
|
ช่วยดูให้หน่อย ครับ pdf ขอมูลทีcount ไม่ลงในตาราง ที่จะแสดงใน pdf |
|
|
|
|
|
|
|
ผมต้องการ ที่ count จาก ตารางมาใส่ pdf โดยนำ code มาจาก web นี้ ข้อมูลที่count ไม่ลงในตาราง ขอคุณครับ
Code (PHP)
<html>
<head>
<title> PDF</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620"></head>
<body>
<?php
require('fpdf.php');
class PDF extends FPDF
{
function LoadData($file)
{
$lines=file($file);
$data=array();
foreach($lines as $line)
$data[]=explode(';',chop($line));
return $data;
}
function BasicTable($header,$data)
{
$w=array(30,30,55,25,20,20);
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C');
$this->Ln();
$this->Cell(30,6,"<<<<<<<<<<<<<". $result[A],1);
$this->Cell(30,6,$eachResult[A],1);
$this->Cell(55,6,$eachResult['A'],1);
$this->Cell(25,6,$eachResult["nickname"],1,0,'C');
$this->Cell(20,6,$eachResult["sex"],1);
$this->Cell(20,6,$eachResult["stardate"],1);
$this->Ln();
}
}
echo "<<<<<<<<<<<<<".$result[A] ;
$pdf=new PDF( 'P' , 'mm' , 'A4' );
$header=array('id','ชื่อ','นามสกุล','ชื่อเล่น','เพศ','Used');
/
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("test");
mysql_query("SET NAME 'Tis620'");
$sql="SELECT count( if( `departmentid` = 'A', `departmentid` , NULL ) ) AS A,
count( `Name` ) AS tname
FROM history";
////////////////////////////////////////////////////////////////////////////////////
$objQuery = mysql_query($sql);
$result= mysql_fetch_array($objQuery );
$resultData = array();
array_push($resultData,$result);
echo "<<<<<<<<<<<<<".$result[A] ;
//////////////////////////////////////////////////////////////////////////////
//************************//
$pdf->AddFont('angsana','','angsa.php');
$pdf->AddFont('angsana','B','angsab.php');
$pdf->AddFont('angsana','I','angsai.php');
$pdf->AddFont('angsana','BI','angsaz.php');
$pdf->SetFont('angsana','',12);
$pdf->AddPage();
$pdf->Image('logo.png',80,8,33);
$pdf->Ln(35);
$pdf->BasicTable($header,$objQuery);
$pdf->Output("pdf/MyPDF.pdf","F");
?>
PDF Created Click <a href="pdf/MyPDF.pdf">here</a> to Download
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2011-11-05 16:05:18 |
By :
yai |
View :
920 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
การ count ใน mysql ให้ใช้ mysql_num_rows ใน array ให้ใช้ count($array)
|
|
|
|
|
Date :
2011-11-07 08:13:21 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|