Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP PDF Function > PHP PDF - Export to PDF and Send Email Attachment


PHP PDF - Export to PDF and Send Email Attachment

PHP PDF - Export to PDF and Send Email Attachment เป็นตัวอย่างการนำข้อมูลจาก MySQL ส่งออกในรูปแบบของไฟล์ PDF และทำการส่งอีเมล์ไปยังปลายทาง (Send Email Attachment)


FPDF Class



PHP Sending Email Attachment files



phpWritePDFMySQLExportSendEmail.php

001.<html>
002.<head>
003.<title>ThaiCreate.Com PHP PDF</title>
004.</head>
005.<body>
006. 
007.<?php
008.require('fpdf.php');
009. 
010.class PDF extends FPDF
011.{
012.//Load data
013.function LoadData($file)
014.{
015.    //Read file lines
016.    $lines=file($file);
017.    $data=array();
018.    foreach($lines as $line)
019.        $data[]=explode(';',chop($line));
020.    return $data;
021.}
022. 
023.//Simple table
024.function BasicTable($header,$data)
025.{
026.    //Header
027.    $w=array(30,30,55,25,20,20);
028.    //Header
029.    for($i=0;$i<count($header);$i++)
030.        $this->Cell($w[$i],7,$header[$i],1,0,'C');
031.    $this->Ln();
032.    //Data
033.    foreach ($data as $eachResult)
034.    {
035.        $this->Cell(30,6,$eachResult["CustomerID"],1);
036.        $this->Cell(30,6,$eachResult["Name"],1);
037.        $this->Cell(55,6,$eachResult["Email"],1);
038.        $this->Cell(25,6,$eachResult["CountryCode"],1,0,'C');
039.        $this->Cell(20,6,$eachResult["Budget"],1);
040.        $this->Cell(20,6,$eachResult["Budget"],1);
041.        $this->Ln();
042.    }
043.}
044. 
045.//Better table
046.function ImprovedTable($header,$data)
047.{
048.    //Column widths
049.    $w=array(20,30,55,25,25,25);
050.    //Header
051.    for($i=0;$i<count($header);$i++)
052.        $this->Cell($w[$i],7,$header[$i],1,0,'C');
053.    $this->Ln();
054.    //Data
055. 
056.    foreach ($data as $eachResult)
057.    {
058.        $this->Cell(20,6,$eachResult["CustomerID"],1);
059.        $this->Cell(30,6,$eachResult["Name"],1);
060.        $this->Cell(55,6,$eachResult["Email"],1);
061.        $this->Cell(25,6,$eachResult["CountryCode"],1,0,'C');
062.        $this->Cell(25,6,number_format($eachResult["Budget"],2),1,0,'R');
063.        $this->Cell(25,6,number_format($eachResult["Budget"],2),1,0,'R');
064.        $this->Ln();
065.    }
066.    //Closure line
067.    $this->Cell(array_sum($w),0,'','T');
068.}
069. 
070.//Colored table
071.function FancyTable($header,$data)
072.{
073.    //Colors, line width and bold font
074.    $this->SetFillColor(255,0,0);
075.    $this->SetTextColor(255);
076.    $this->SetDrawColor(128,0,0);
077.    $this->SetLineWidth(.3);
078.    $this->SetFont('','B');
079.    //Header
080.    $w=array(20,30,55,25,25,25);
081.    for($i=0;$i<count($header);$i++)
082.        $this->Cell($w[$i],7,$header[$i],1,0,'C',true);
083.    $this->Ln();
084.    //Color and font restoration
085.    $this->SetFillColor(224,235,255);
086.    $this->SetTextColor(0);
087.    $this->SetFont('');
088.    //Data
089.    $fill=false;
090.    foreach($data as $row)
091.    {
092.        $this->Cell($w[0],6,$row[0],'LR',0,'L',$fill);
093.        $this->Cell($w[1],6,$row[1],'LR',0,'L',$fill);
094.        $this->Cell($w[2],6,$row[2],'LR',0,'L',$fill);
095.        $this->Cell($w[3],6,$row[3],'LR',0,'C',$fill);
096.        $this->Cell($w[4],6,number_format($row[4]),'LR',0,'R',$fill);
097.        $this->Cell($w[5],6,number_format($row[5]),'LR',0,'R',$fill);
098.        $this->Ln();
099.        $fill=!$fill;
100.    }
101.    $this->Cell(array_sum($w),0,'','T');
102.}
103.}
104. 
105.$pdf=new PDF();
106.//Column titles
107.$header=array('CustomerID','Name','Email','Country Code','Budget','Used');
108.//Data loading
109. 
110.//*** Load MySQL Data ***//
111.$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
112.$objDB = mysql_select_db("mydatabase");
113.$strSQL = "SELECT * FROM customer";
114.$objQuery = mysql_query($strSQL);
115.$resultData = array();
116.for ($i=0;$i<mysql_num_rows($objQuery);$i++) {
117.    $result = mysql_fetch_array($objQuery);
118.    array_push($resultData,$result);
119.}
120.//************************//
121. 
122. 
123. 
124.$pdf->SetFont('Arial','',10);
125. 
126.//*** Table 1 ***//
127.$pdf->AddPage();
128.$pdf->Image('logo.png',80,8,33);
129.$pdf->Ln(35);
130.$pdf->BasicTable($header,$resultData);
131. 
132.//*** Table 2 ***//
133.$pdf->AddPage();
134.$pdf->Image('logo.png',80,8,33);
135.$pdf->Ln(35);
136.$pdf->ImprovedTable($header,$resultData);
137. 
138.//*** Table 3 ***//
139.$pdf->AddPage();
140.$pdf->Image('logo.png',80,8,33);
141.$pdf->Ln(35);
142.$pdf->FancyTable($header,$resultData);
143. 
144.$pdf->Output("MyPDF/MyPDF.pdf","F");
145. 
146. 
147.//*************** Send Email ***************//
148. 
149.$strTo = "member@thaicreate.com";
150.$strSubject = "PDF Report";
151.$strMessage = "Download MyPDF.pdf for PDF Report";
152. 
153.//*** Uniqid Session ***//
154.$strSid = md5(uniqid(time()));
155. 
156.$strHeader = "";
157.$strHeader .= "From: Mr.Weerachai Nukitram<webmaster@thaicreate.com>\nReply-To: webmaster@thaicreate.com\n";
158.$strHeader .= "Cc: Mr.Surachai Sirisart<surachai@thaicreate.com>";
159.$strHeader .= "Bcc: webmaster@thaicreate.com";
160. 
161.$strHeader .= "MIME-Version: 1.0\n";
162.$strHeader .= "Content-Type: multipart/mixed; boundary=\"".$strSid."\"\n\n";
163.$strHeader .= "This is a multi-part message in MIME format.\n";
164. 
165.$strHeader .= "--".$strSid."\n";
166.$strHeader .= "Content-type: text/html; charset=windows-874\n"; // or UTF-8 //
167.$strHeader .= "Content-Transfer-Encoding: 7bit\n\n";
168.$strHeader .= $strMessage."\n\n";
169. 
170.$strContent1 = chunk_split(base64_encode(file_get_contents("MyPDF/MyPDF.pdf")));
171.$strHeader .= "--".$strSid."\n";
172.$strHeader .= "Content-Type: application/octet-stream; name=\"MyPDF.pdf\"\n";
173.$strHeader .= "Content-Transfer-Encoding: base64\n";
174.$strHeader .= "Content-Disposition: attachment; filename=\"MyPDF.pdf\"\n\n";
175.$strHeader .= $strContent1."\n\n";
176. 
177. 
178.$flgSend = @mail($strTo,$strSubject,null,$strHeader); // @ = No Show Error //
179.if($flgSend)
180.{
181.echo "PDF Generated & Email Sending.";
182.}
183.else
184.{
185.echo "Email Can Not Send.";
186.}
187. 
188.?>
189.</body>
190.</html>




Screenshot

PHP & PDF



ใช้งานจริงกับ Hotmail.Com

PHP & PDF


Reference : http://www.fpdf.org


   
Hate it
Don't like it
It's ok
Like it
Love it
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2008-10-20 19:01:14 / 2017-03-15 10:43:00
  Download : Download  PHP PDF - Export to PDF and Send Email Attachment
 Sponsored Links / Related

 
PHP PDF
Rating :

 
PHP PDF - Header, footer, page break and image
Rating :

 
PHP PDF - Line breaks and colors
Rating :

 
PHP PDF - Multiple Columns
Rating :

 
PHP PDF - Insert Tables
Rating :

 
PHP PDF - Links and flowing text
Rating :

 
PHP PDF - MySQL Export to PDF
Rating :

 
PHP PDF - Thai Font Language
Rating :

 
PHP PDF - Header and Footer
Rating :


ThaiCreate.Com Forum
Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   





ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่