要求( 'FPDF / fpdf.php');
$ pdf = new FPDF('P','mm','A4');
$ connection = mysqli_connect('localhost','root','','timber1');
$ sql1 =“select * from tbl_customer where customerid = 1053597”;
$结果= mysqli_query($连接,$ SQL1);
$ row = mysqli_fetch_array($ result);
$ cus_name = $行[ '名称'];
$ PDF->细胞(10,50,$ cus_name,0);
$ PDF->输出();
答案 0 :(得分:1)
你得到什么错误?有没有?
起初我猜你应该从调用FPDF的对象开始,如下所示:
$pdf = new FPDF('P','mm','A4');
答案 1 :(得分:0)
$pdf
对象未创建。看看错误。