|
|
|
อยากให้เมื่อบันทึกข้อมูลลงสู่ฐานข้อมูลแล้ว ให้โปรแกรม export ออกมาเป็น ไฟล์ pdf เลยโดยดึงมาจากฐานข้อมูลที่เราบันทึกเข้าไป |
|
|
|
|
|
|
|
Code (PHP)
<body>
<?php
print_r($_POST);
include("config.inc.php");
mysql_query("set NAMES'UTF8'");
$sql="INSERT INTO fservice (fid, fdate, fdiv, fbuild, ftel, fname, typename, fdetail, receive, findate, admin) ";
$sql.="VALUES ('$fid', '$fdate', '$fdiv', '$fbuild', '$ftel', '$fname', '$typename', '$fdetail', '', '', '')";
$result=mysql_db_query($db,$sql);
if ($result){
echo "<center>";
echo $fid;
echo "<font color=green><b>บันทึกรายงานลงสู่ฐานข้อมูล</b></font><p>";
echo "<a href='ExportPDF.php'>รับไฟล์เอกสาร</a>";
echo "</center>";
}else{
echo "<center>";
echo "<font color=red><b>ไม่สามารถบันทึกรายงานได้</b></font>";
echo "</center>";
}
?>
<input name="fid" type="hidden" id="fid" value="<?php echo $fid; ?>" />
</body>
</html>
*ตรงไฟล์ ExportPDF.php ผมกำหนดให้ ดึงเรคคอร์ดออกมาจากฐานข้อมูลโดยรับค่า $fid มาจาก ไฟล์นี้ครับ . .. แต่ดูแล้ว เหมือนค่ามันจะไม่ยอมส่งมา
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2011-07-19 10:25:04 |
By :
Necrotorture |
View :
1081 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$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["CustomerID"],1);
$this->Cell(30,6,$eachResult["Name"],1);
$this->Cell(55,6,$eachResult["Email"],1);
$this->Cell(25,6,$eachResult["CountryCode"],1,0,'C');
$this->Cell(25,6,number_format($eachResult["Budget"],2),1,0,'R');
$this->Cell(25,6,number_format($eachResult["Budget"],2),1,0,'R');
$this->Ln();
}
Go to : PHP PDF - MySQL Export to PDF
|
|
|
|
|
Date :
2011-07-19 10:27:05 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตัวโปรแกรมที่ ทำ pdf ผมทำได้แล้วอ่าคับพี่วิน ติดตรงที่ ไฟล์ บันทึกข้อมูลอ่า มันไม่ยอมส่ง ตัวแปรที่เป็น pimary key มาที่ไฟล์ ExportPDF อ่าคับ โปรแกรมเลยไม่สามารถทำไฟล์เอกสารออกมาได้อ่าคับ
<html>
<head>
<title>ThaiCreate.Com PHP PDF</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<body>
<?php
print_r($_POST);
require('fpdf.php');
//include('config.inc.php');
$host="localhost";
$user="root";
$pass="123456";
$db="webboardx";
mysql_connect($host,$user,$pass);
mysql_select_db($db);
$fid = $_POST['fid'];
/******Connect Sql********/
mysql_query("set NAMES'tis620'");
$sql = "SELECT * FROM fservice where fid = '%".$_POST['fid']."%'";
$result = mysql_query($sql);
$arr = mysql_fetch_array($result);
$pdfname = $arr[0];
/***************************/
//สร้างไฟล์เอกสารใหม่
$pdf=new FPDF('P', 'mm', 'A4');
//ตั้งค่ากั้นหน้ากระดาษ
$pdf->SetLeftMargin(20);
//เพิ่มหน้าใหม่
$pdf->AddPage();
//ติดตั้งฟอนต์ภาษาไทย
$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','B',16);
$pdf->SetFont('angsana','B',14);
$pdf->setXY(10, 10);
$pdf->Cell(0, 0, iconv('UTF-8','cp874', 'เลขที่ '.$arr[0]), 0, 0, 'R');
$pdf->SetFont('angsana','B',20);
$pdf->setXY(10, 25);
$pdf->Cell(0, 0, iconv('UTF-8','cp874', 'แบบฟอร์มขอใช้บริการ Software/HosXP'), 0, 0,'C');
$pdf->SetFont('angsana','',18);
$pdf->setXY(10, 35);
$pdf->Cell(0, 0, iconv('UTF-8','cp874', 'ศูนย์คอมพิวเตอร์ โรงพยาบาลสมุทรสาคร'), 0, 0,'C');
$pdf->setXY(20, 40);
$pdf->Write(0, iconv('UTF-8','cp874', '.......................................................................................................................................................................................................'));
$pdf->SetFont('angsana','',14);
$pdf->setXY(20, 45);
$pdf->Cell(0, 0, iconv('UTF-8','cp874', 'วันที่ '.$arr[1]));
$pdf->setXY(20, 55);
$pdf->Cell(0, 0, iconv ('UTF-8','cp874', 'หน่วยงานที่ขอรับบริการ '));
$pdf->SetXY(65, 55);
$pdf->Cell(0, 0, iconv ('UTF-8', 'cp874', '').$arr[2]);
$pdf->SetFont('angsana','',14);
$pdf->setXY(100, 55);
$pdf->Cell(0, 0, iconv('UTF-8','cp874', 'อาคาร '));
$pdf->SetXY(130, 55);
$pdf->Cell(0, 0, iconv ('UTF-8', 'cp874', '').$arr[3]);
$pdf->setXY(20, 60);
$pdf->Write(0, iconv('UTF-8', 'cp874', 'หมายเลขโทรศัพท์ ').$arr[4]);
$pdf->setXY(100, 60);
$pdf->Cell(0,0, iconv('UTF-8', 'cp874', 'ผู้ประสานงาน ').$arr[5]);
$pdf->SetFont('angsana','B',14);
$pdf->setXY(20, 65);
$pdf->Cell(28, 5, iconv('UTF-8', 'cp874', 'สิ่งที่ขอให้ดำเนินการ ').$arr[6],'B');
$pdf->SetFont('angsana','',14);
$pdf->setXY(30,75);
$pdf->Write(5, iconv('UTF-8', 'cp874', '').$arr[7]);
$pdf->setXY(130, 180);
$pdf->Write(0, iconv('UTF-8', 'cp874', 'ลงชื่อ...................................................'));
$pdf->setXY(140, 185);
$pdf->Write(0, iconv('UTF-8', 'cp874', 'หัวหน้า/ผู้รับผิดชอบงาน'));
$pdf->SetFont('angsana','B',14);
$pdf->setXY(20, 200);
$pdf->Cell(0, 0, iconv('UTF-8', 'cp874', ''), 'B');
$pdf->SetFont('angsana','',14);
$pdf->setXY(20, 210);
$pdf->write(0, iconv('UTF-8', 'cp874', 'ส่วนของเจ้าหน้าที่ศูนย์คอม'));
$pdf->setXY(40, 220);
$pdf->write(0, iconv('UTF-8', 'cp874', 'ได้รับเอกสารวันที่ '.$arr[1]));
$pdf->setXY(40, 225);
$pdf->write(0, iconv('UTF-8', 'cp874', 'วันที่คาดว่าจะแล้วเสร็จ '.$arr[1]));
$pdf->setXY(40, 230);
$pdf->write(0, iconv('UTF-8', 'cp874', 'Admin/Programmer ที่รับงาน ').$arr[5]);
$pdf->setXY(130, 250);
$pdf->Write(0, iconv('UTF-8', 'cp874', 'ลงชื่อ...................................................'));
$pdf->setXY(150,260);
$pdf->Write(0, iconv('UTF-8', 'cp874', 'ผู้ตรวจสอบ'));
$pdf->Output("MyPDF/$pdfname.pdf");
/********************************/
$sql3 = "UPDATE fservice SET serviceFile='$pdfname.pdf' WHERE fid='$pdfname'";
$result3 = mysql_query($sql3);
/********************************/
echo $_POST['fid'];
echo "เอกสาร :<a href=MyPDF/".$arr['11'].">".$arr['11']."</a><br>";
?>
</body>
</html>
|
|
|
|
|
Date :
2011-07-19 10:42:14 |
By :
Necrotorture |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|