2017-02-16 81 views
-3

require('fpdf/fpdf.php');如何使用fpdf獲取數據表格數據庫

$ pdf = new FPDF('P','mm','A4');

$ connection = mysqli_connect('localhost','root','','timber1');

$ sql1 =「select * from tbl_customer where customerid = 1053597」;

$ result = mysqli_query($ connection,$ sql1);

$ row = mysqli_fetch_array($ result);

$ cus_name = $ row ['name'];

$ pdf-> Cell(10,50,$ cus_name,0);

$ pdf-> Output();

+0

其中是$ pdf定義? –

回答

1

你會得到什麼錯誤?有沒有?

起初,我想你應該叫FPDF的對象,像這樣開始:未創建

$pdf = new FPDF('P','mm','A4'); 
+0

我得到這個錯誤分析錯誤:語法錯誤,意想不到的','在D:\ wamp \ www –

+1

這條錯誤顯示哪行? –

+0

啊......那些語法錯誤:) – Mathew

0

$pdf對象。看看錯誤。

相關問題