PDF ไม่แสดงผลเลยครับ Warning: fopen ครับผมๆๆๆๆๆๆๆๆๆๆๆๆๆๆๆๆๆๆๆๆๆ
มันขึ้น Error แบบนี้อ่าครับ
Code
Warning: fopen(MyPDF/MyPDF.pdf) [function.fopen]: failed to open stream: No such file or directory in C:\AppServ\www\computer\fpdf\fpdf.php on line 1044
FPDF error: Unable to create output file: MyPDF/MyPDF.pdf
ผมดูตัวจากจาก
https://www.thaicreate.com/php/php-export-pdf.html
https://www.thaicreate.com/php/php-pdf-mysql-export-pdf.html
ผมจะexport จาก sql ออกมาอ่าคับ ผมก็โหลด ตัว FPDF มา copy ว่าใน AppServ แล้วก็แก้Error เรื่อยๆจนมาถึงError ตัวนีอ่าครับ
รบกวนพี่ๆสอนหน่อยครับหรือว่าต้องไป setcode อีกตรงไหนหรือป่าวครับ
Code (PHP)
<html>
<head>
<title></title>
</head>
<body>
<?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(30,30,55,25,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(30,6,$eachResult["ID_com"],1);
$this->Cell(30,6,$eachResult["name_com"],1);
$this->Cell(55,6,$eachResult["User"],1);
$this->Cell(25,6,$eachResult["ID_Dep"],1,0,'C');
$this->Cell(20,6,$eachResult["Date"],1);
$this->Cell(20,6,$eachResult["Date"],1);
$this->Ln();
}
}
//Better table
function ImprovedTable($header,$data)
{
//Column widths
$w=array(20,30,55,25,25,25);
//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["ID_com"],1);
$this->Cell(30,6,$eachResult["name_com"],1);
$this->Cell(55,6,$eachResult["User"],1);
$this->Cell(25,6,$eachResult["ID_Dep"],1,0,'C');
$this->Cell(25,6,number_format($eachResult["Date"],2),1,0,'R');
$this->Cell(25,6,number_format($eachResult["Date"],2),1,0,'R');
$this->Ln();
}
//Closure line
$this->Cell(array_sum($w),0,'','T');
}
//Colored table
function FancyTable($header,$data)
{
//Colors, line width and bold font
$this->SetFillColor(255,0,0);
$this->SetTextColor(255);
$this->SetDrawColor(128,0,0);
$this->SetLineWidth(.3);
$this->SetFont('','B');
//Header
$w=array(20,30,55,25,25,25);
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C',true);
$this->Ln();
//Color and font restoration
$this->SetFillColor(224,235,255);
$this->SetTextColor(0);
$this->SetFont('');
//Data
$fill=false;
foreach($data as $row)
{
$this->Cell($w[0],6,$row[0],'LR',0,'L',$fill);
$this->Cell($w[1],6,$row[1],'LR',0,'L',$fill);
$this->Cell($w[2],6,$row[2],'LR',0,'L',$fill);
$this->Cell($w[3],6,$row[3],'LR',0,'C',$fill);
$this->Cell($w[4],6,number_format($row[4]),'LR',0,'R',$fill);
$this->Cell($w[5],6,number_format($row[5]),'LR',0,'R',$fill);
$this->Ln();
$fill=!$fill;
}
$this->Cell(array_sum($w),0,'','T');
}
}
$pdf=new PDF();
//Column titles
$header=array('ID_com','name_com',' User','ID_Dep','Date');
//Data loading
//*** Load MySQL Data ***//
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("datacomputer");
$strSQL = "SELECT * FROM computer";
$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->SetFont('Arial','',10);
//*** Table 1 ***//
$pdf->AddPage();
$pdf->Image('logo.png',80,8,33);
$pdf->Ln(35);
$pdf->BasicTable($header,$resultData);
//*** Table 2 ***//
$pdf->AddPage();
$pdf->Image('logo.png',80,8,33);
$pdf->Ln(35);
$pdf->ImprovedTable($header,$resultData);
//*** Table 3 ***//
$pdf->AddPage();
$pdf->Image('logo.png',80,8,33);
$pdf->Ln(35);
$pdf->FancyTable($header,$resultData);
$pdf->Output("MyPDF/MyPDF.pdf","F");
?>
PDF Created Click <a href="../MyPDF/MyPDF.pdf">here</a> to Download
</body>
</html>
Tag : PHP
Date :
2014-04-01 15:05:27
By :
oNGo
View :
3003
Reply :
8
logo.png มีอยู่จริงหรือเปล่าครับ?
Date :
2014-04-01 19:22:52
By :
itpcc
No such file or directory มันก็บอกตรงๆ ตัว แล้ว เพลีย
Date :
2014-04-01 21:03:16
By :
apisitp
T.T
Date :
2014-04-03 08:38:49
By :
pangroupza
เมื่อคลิก สร้างไฟล์ pdf สิ่งที่คุณจะได้ คือไฟล์ชื่อ MYPDF.PDF (แสดงว่าคุณยังไม่ได้ทำความเข้าใจอะไรใหม่เลย)
ลองกลับไปอ่าน คห.ที่ 1 (ว่าจริงไหม)
หรือ กลับไปดู Code บรรทัดที่ 1044 (ถ้าหาไม่เจอก็ไม่รู้จะช่วยอย่างไรแล้วครับ)
หรือ เริ่มทำความเข้าใจใหม่ นับ 1 ก้าวเดินอย่างช้า ๆ
พิมพ์สัญลักษณ์ T.T ไม่มีผลหรอกครับ ผมเห็นแล้วรู้สึกถึงความไม่พยายาม รู้สึกถึงความขี้เกียจ ไม่อดทน ไม่พยายาม
ลองทำตามอย่างที่บอกครับ
Date :
2014-04-03 13:18:02
By :
apisitp
ถูกต้องครับ มันก็เป็นผลดีกับตัวคุณ
Date :
2014-04-04 11:25:26
By :
apisitp
MyPDF/MyPDF.pdf โหลดได้จากที่ไหน โฟล์เดอร์ fpdf ไม่มี
Date :
2018-11-29 14:32:08
By :
ไทย ไทย
Load balance : Server 04