HOME > PHP > PHP Forum > สอบถามเรื่องการ export เป็น PDF = สวัสดีครับ ผมเป็นสมาชิกใหม่ กำลังทำลังเร่งทำโปรเจ็คอยู่ครับ พอดีอยากสอบถามพี่ที่มีความรู้ในเว็บครับ ผมจะทำรายงานให้เป็น PDF ผมทำตามลิงค์นี้อะครับ
สอบถามเรื่องการ export เป็น PDF = สวัสดีครับ ผมเป็นสมาชิกใหม่ กำลังทำลังเร่งทำโปรเจ็คอยู่ครับ พอดีอยากสอบถามพี่ที่มีความรู้ในเว็บครับ ผมจะทำรายงานให้เป็น PDF ผมทำตามลิงค์นี้อะครับ
Warning: fopen(MyPDF/MyPDF.pdf) [function.fopen]: failed to open stream: No such file or directory in C:\AppServ\www\fpdf16\fpdf.php on line 1044
FPDF error: Unable to create output file: MyPDF/MyPDF.pdf
รบกวนช่วยทีนะครับ
Tag : PHP, Report Others
Date :
2011-12-17 18:44:23
By :
DonutJung
View :
1630
Reply :
3
No. 1
Guest
ขอดูโค๊ดด้วยคะ ก็ดู line 1044 ขึ้นไป ว่ามีตัวแปรหรืออะรัยที่ผิดอยู่นะคะ
ขอบคุณครับ โค๊ดตัวนี้ผมก็อปมาจากหัวข้อ php pdf ของ thaicreate อะครับ โค๊ดนะครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP PDF</title>
</head>
<body>
<?php
require('fpdf16/fpdf.php');
$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Times','B',16);
$pdf->Cell(0,10,'Welcome to www.ThaiCreate.Com',0,1);
$pdf->Cell(0,20,'Version 2009',0,1,"C");
$pdf->Output("MyPDF/MyPDF.pdf","F");
?>
PDF Created Click <a href="MyPDF/MyPDF.pdf">here</a> to Download
</body>
</html>
พอรันออกมาก็ได้แบบนี้ครับ
Code
Warning: fopen(MyPDF/MyPDF.pdf) [function.fopen]: failed to open stream: No such file or directory in C:\AppServ\www\fpdf16\fpdf.php on line 1044
FPDF error: Unable to create output file: MyPDF/MyPDF.pdf