ถ้าจะดึงข้อมูลจากฐานข้อมูลมาแสดงใน PDF ต้องเขียนยังค่ะ เพราะลองเรียกมาแล้วข้อมูลไม่แสดง
ถ้าจะดึงข้อมูลจากฐานข้อมูลมาแสดงใน PDF ต้องเขียนยังค่ะ เพราะลองเรียกมาแล้วข้อมูลไม่แสดง
code ที่เขียนค่ะ
Code (PHP)
<?php
$user = 'sa';
$pass = 'xxxxxxxxxx';
$server = '192.xxx.x.xxx';
$database = 'form';
$connection_string = "DRIVER={SQL Server};SERVER=$server;DATABASE=$database;Client_CSet=UTF-8;";
$link = odbc_connect($connection_string,$user,$pass);
if ($link) {
// echo "Connection established.";
} else{
die("Connection could not be established.");
}
?>
<?php
require('fpdf.php');
//$pdf=new FPDF();
$pdf=new FPDF( 'P' , 'mm' , 'A4' );
$pdf->AddPage();
$pdf->Image('form.png',5,5,200,290);
$y = 38;
$x = 26;
$sql = "select * From form where ID = '55' ";
$query = odbc_exec ($link,$sql);
while($row = odbc_fetch_array($query)){
$pdf->SetFont('Arial','',12);
$pdf->Text( $x , $y , $Title);
}
$pdf->Output();
?>
Tag : PHP, Ms SQL Server 2008, Google Chrome, XAMPP, Windows
Date :
2018-12-13 15:43:56
By :
mewhappy
View :
1083
Reply :
3
Code (PHP)
$objConnect = odbc_connect("mydatabase","sa","") or die("Error Connect to Database");
$strSQL = "SELECT * FROM customer";
$objExec = odbc_exec($objConnect, $strSQL) or die ("Error Execute [".$strSQL."]");
หา error มันดูครับว่ามีหรือป่าว
Date :
2018-12-14 09:25:47
By :
nobetaking
Load balance : Server 03