2012-07-19 51 views
6

Tôi có một bảng trong cơ sở dữ liệu như thế nàyCách sử dụng tập lệnh PHP trong TCPDF?

expedition_name | Phone | CP | 
__________________________________________ 
    Starsindo | 09890 | John | 
    Iron Bird | 09891 | Gina | 
    MSA Cargo | 09890 | John | 

Bây giờ tôi sẽ tạo ra PDF từ bảng với TCPDF sử dụng chức năng HTML.

nhưng tôi vẫn lẫn lộn như thế nào để kết hợp mà mã của tôi như thế này

<?php 

require_once('tcpdf/config/lang/eng.php'); 
require_once('tcpdf/tcpdf.php'); 

// create new PDF document 
include "koneksi.php"; 
    $sql = "SELECT * FROM tb_exp_local"; 
    $hasil = mysql_query($sql); 
    $data = mysql_fetch_array($hasil); 

    $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); 

    // set font 
    $pdf->SetFont('times', '', 11); 

    // add a page 
    $pdf->AddPage(); 



    $html = '<h2>List Of Expediton</h2> //Title 
<table border="1" cellspacing="3" cellpadding="4"> 
    <tr> 
     <th>Expedition</th>    //head of column name 
     <th align="center">Phoine</th> //head of column name 
     <th align="center">CP</th>  //head of column name 
    </tr> 
    while($data=mysql_fetch_array($hasil)) 
    { 
    <tr> 
     <td>$data[nama_exp]</td> 
    </tr> 
    } 
</table>'; 


    $pdf->writeHTML($html, true, false, true, false, ''); 


    $pdf->Output('Local Expedition, 'I'); 

?> 

thể Bất cứ ai giúp tôi, Làm thế nào để sửa chữa nó? và dữ liệu có thể được viết bằng PDF?

+0

và lỗi/vấn đề là gì? – k102

Trả lời

7

bạn cần chuẩn bị html của bạn với một cái gì đó như:

$html = '<h2>List Of Expediton</h2> //Title 
    <table border="1" cellspacing="3" cellpadding="4"> 
    <tr> 
     <th>Expedition</th>    //head of column name 
     <th align="center">Phoine</th> //head of column name 
     <th align="center">CP</th>  //head of column name 
    </tr>'; 

while($data=mysql_fetch_array($hasil)) { 
    $html .= '<tr><td>'.$data['nama_exp'].'</td></tr>'; 
} 
$html .= '</table>'; 
+0

+1 cho câu trả lời của bạn ... – mrsrinivas

Các vấn đề liên quan