|
|
|
ข้อมูลใน table ไม่เป็นภาษาไทยครับ แก้ไงครับผม รบกวนหน่อยนะครับผม |
|
|
|
|
|
|
|
Code (PHP)
ข้อมูลใน table มันไม่ยอมออกเป็นภาษาไทยอะครับ เราต้องไป set font ตรงไหนครับผม
แต่ตรง หัวตาราง ออกเป็นภาษาไทยครับ งงตึบ รบกวนหน่อยครับผม
<?php
function fetch_data()
{
$output = '';
$con = mysqli_connect("localhost", "root", "", "tutor");
$sql = "SELECT * FROM tutor";
$result = mysqli_query($con, $sql);
while($row = mysqli_fetch_array($result))
{
$output .= '<tr>
<td>'.$row["ID_t"].'</td>
<td>'.$row["Name_t"].'</td>
<td>'.$row["Info_t"].'</td>
<td>'.$row["Grade_t"].'</td>
<td>'.$row["Local_t"].'</td>
<td>'.$row["Main_t"].'</td>
<td>'.$row["Limit_t"].'</td>
</tr>
';
}
return $output;
}
if(isset($_POST["generate_pdf"]))
{
require_once('tcpdf/tcpdf.php');
$obj_pdf = new TCPDF('P', PDF_UNIT, PDF_PAGE_FORMAT, true, 'thsarabun', false);
$obj_pdf->SetCreator(PDF_CREATOR);
$obj_pdf->SetTitle("รายชื่อติวเตอร์");
$obj_pdf->SetHeaderData('', '', PDF_HEADER_TITLE, PDF_HEADER_STRING);
$obj_pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
$obj_pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
$obj_pdf->SetDefaultMonospacedFont('helvetica');
$obj_pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
$obj_pdf->SetMargins(PDF_MARGIN_LEFT, '10', PDF_MARGIN_RIGHT);
$obj_pdf->setPrintHeader(false);
$obj_pdf->setPrintFooter(false);
$obj_pdf->SetAutoPageBreak(TRUE, 10);
$obj_pdf->SetFont('thsarabun', '', 11);
$obj_pdf->AddPage();
$content = '';
$content .= '
<h4 align="center"><font size ="24" >รายชื่อติวเตอร์</h4><br />
<table border="1" cellspacing="0" cellpadding="3">
<tr>
<th width="5%">ID_t</th>
<th width="15%">Name_t</th>
<th width="15%">Info_t</th>
<th width="15%">Grade_t</th>
<th width="20%">Local_t</th>
<th width="15%">Main_t</th>
<th width="15%">Limit_t</th>
</tr>
';
$content .= fetch_data();
$content .= '</table>';
$obj_pdf->writeHTML($content);
$obj_pdf->Output('file.pdf', 'I');
}
?>
<!DOCTYPE html>
<html>
<head>
<title>รายชื่อติวเตอร์</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
</head>
<body>
<br />
<div class="container">
<h4 align="center">รายชื่อติวเตอร์</h4><br />
<div class="table-responsive">
<div class="col-md-12" align="right">
<form method="post">
<input type="submit" name="generate_pdf" class="btn btn-success" value="Generate PDF" />
</form>
</div>
<br/>
<br/>
<table class="table table-bordered">
<tr>
<th width="5%">ID_t</th>
<th width="15%">Name_t</th>
<th width="15%">Info_t</th>
<th width="15%">Grade_t</th>
<th width="20%">Local_t</th>
<th width="15%">Main_t</th>
<th width="15%">Limit_t</th>
</tr>
<?php
echo fetch_data();
?>
</table>
</div>
</div>
</body>
</html>
Tag : PHP, HTML, HTML5, PDF, iReport, Crystal Report
|
|
|
|
|
|
Date :
2017-10-16 21:34:08 |
By :
coke0213 |
View :
1157 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!DOCTYPE html>
<html>
<head>
<title>รายชื่อติวเตอร์</title>
<meta charset="UTF-8">
|
|
|
|
|
Date :
2017-10-16 21:59:42 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|