fpdf
<?php require(‘chinese.php’); class PDF extends PDF_Chinese { function Header() //设置页眉 { $this->SetFont(‘GB’, »,10); $this->Write(10,’XX公司产品名录’); $this->Ln(20); //换行 } function Footer() //设置页脚 { $this->SetY(-15); $this->SetFont(‘GB’, »,10); $this->Cell(0,10,’第’.$this->PageNo().’页’); } } $conn = mysql_connect(« localhost », « root », « »); //连接数据库 mysql_select_db(« product », $conn); //执行SQL $query_rs_prod = « SELECT * FROM product ORDER BY prod_id »; $rs_prod = mysql_query($query_rs_prod, $conn) or die(mysql_error()); $row_rs_prod = mysql_fetch_assoc($rs_prod); $totalRows_rs_prod = mysql_num_rows($rs_prod); […]