|
|
|
เรียนถามท่านผู้รู้ดิฉันสร้างรายงานแบบ PDF ด้วย PHP/Mysql แล้ว ERROR |
|
|
|
|
|
|
|
ดิฉันเขียนโค้ดดังนี้
Code (PHP)
<?php
require("FPDF/ThaiPDF.class.php");
$pdf = new ThaiPDF();
$pdf->AddThaiFont("cordia");
$pdf->AddPage("L","A4");
//กำหนดบริษัท
$pdf->SetFont("cordia","B",14);
$pdf->Write(10,"Demco Public Co,Ltd. \n");
$pdf->SetFont("cordia","B",12);
$pdf->Write(7,"ทะเบียนใบแจ้งดำเนินการด้านคอมพิวเตอร์ \n");
$pdf->SetFontSize(10);
//ส่วนหัวตาราง
$html = "
<table border= 1>
<tr>
<td width=30 bgcolor=#cccccc>ลำดับ<br/>ที่</td>
<td width=100 bgcolor=#cccccc>เลขที่ใบแจ้ง<br/>ดำเนินการด้านคอมฯ</td>
<td width=100 bgcolor=#cccccc>รหัสสินทรัพย์</td>
<td width=150 bgcolor=#cccccc>เหตุผลการขอดำเนินการ</td>
<td width=50 bgcolor=#cccccc>สาเหตุ</td>
<td width=80 bgcolor=#cccccc>วิธีป้องกัน</td>
<td width=80 bgcolor=#cccccc>วันที่ส่งซ่อม</td>
<td width=80 bgcolor=#cccccc>วันที่<br/>รับคืนฝ่าย</td>
<td width=100 bgcolor=#cccccc>ผู้ดำเนินการ</td>
<td width=110 bgcolor=#cccccc>หมายเหต</td>
</tr> ";
@mysql_connect("localhost","root"," ") or die(mysql_error());
mysql_select_db("itest") or die(mysql_error());
$sql ="SELECT rep.*,emp.empl_deptname
FROM comrepair AS rep
INNER JOIN employee AS emp ON rep.repair_codeemp = emp.empl_id
WHERE rep.repair_status = 'Y'; ";
$result = mysql_query($sql);
$x=1;
while($rowemp = mysql_fetch_array($result)) {
$html .= "<tr>
<td width=30>$x++ </td>
<td width=100>{$rowemp['repair_docno']}</td>
<td width=100>{$rowemp['repair_id']}</td>
<td width=150>{$rowemp['repair_condition2']}</td>
<td width=50> </td>
<td width=80> </td>
<td width=80>{$rowemp['repair_date']}</td>
<td width=80>{$rowemp['repair_daterec']}</td>
<td width=100>{$rowemp['repair_man']}</td>
<td width=110> </td>
</tr> }
</table>";
$pdf->WriteHTML($html);
$pdf->Output($html);
?>
พอรันโค้ดขึ้นERRORดังนี้ค่ะ ไม่ทราบว่าเขียนผิดตรงไหน
Code
Parse error: syntax error, unexpected $end in C:\AppServ\www\itdemco\ex.php on line 51
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2012-11-16 11:26:42 |
By :
มือใหม่ |
View :
1004 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนช่วยตอบดิฉันด้วยนะค่ะท่านผู้รู้
|
|
|
|
|
Date :
2012-11-16 12:03:40 |
By :
มือใหม่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วถ้าเราต้องการออกรายงานในแบบ pdf แต่จะให้ออกในแนวตั้ง เช่น
1. ข้อมูลเกี่ยวกับสารเคมี
ชื่อ : A-Trine
ชนิดของสาร : ผลิตภัณฑ์สำเร็จรูป
แบบนี้อ่ะคะ ตรง ชื่อ กับชนิดของสาร จะเป็น ฟิล ใน DB แต่ A-Trine กะ ผลิตภัณฑ์สำเร็จรูป เป็น ข้อมูลที่ดึงขึ้นมาจาก db
เรียงลงมาเรื่อยๆ ตามหัวข้อ ต้องทำในรูปแบบไน๋อ่ะคะ
|
|
|
|
|
Date :
2013-01-23 15:43:08 |
By :
มะหมวย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|