1

fpdf でテーブルを作成する際に問題があります。

このページの作成を手伝ってくれる人はいますか (または、少なくともその方法を教えてください)。

または、 HTML テーブルを FPDF テーブルに変換し、ここにコードを配置する方法を示すことができますか?

これもあります(データベースへの接続とともに):

$person = mysql_fetch_array($result);

この = を使用してテーブル内に追加すると、これが機能するようにしたい (例)

$pdf->Cell(0,260,''.$person["CA"],'C',0 ,1); --- .$person["CA"]

誰でも私を助けることができますか?

4

1 に答える 1

6

そうですね、FPDF はタイプライターのように機能します。書き込み先の移動する X、Y ポイントがあり、手動で移動したり、自動で行ったりすることができます。

左の巨大な空白が必要かどうかはわかりません。その場合、各書き込みの前に $this->SetX($coordinate) を呼び出す必要があります。

次のようにする必要があります。

class InvoicePDF extends FPDF //Create a new class to contain the header/footer/etc. which extends FPDF
{
    public function Header()
    {
    //Header stuff goes here, like the big Invoice
        $this->SetY(10); //SetY 10 units down from the top, experiment with distance to get appropriate distance
        $this->SetFont('Arial','',20); //Set Font to Arial/Helvetica 20 pt font
        $this->SetTextColor(0,0,0); //Set Text Color to Black;
        $this->Cell(0,9,"INVOICE",0,0,'R');  //Write the word INVOICE Right aligned in a box the width of the page, will put it at the far right of the page
     }

     public function Footer()
     {
       //any footer stuff goes here
     }
     
     public function FillHeadInfo($info) //$info would be an array of the stuff to fill the small table at the top
     {
          $this->SetY(0); //reset the Y to the original, since we moved it down to write INVOICE
          $this->SetFont('Arial','',12);
          $this->SetFillColor(224,224,224); //Set background of the cell to be that grey color
          $this->Cell(20,12,"Order #",1,0,'C',true);  //Write a cell 20 wide, 12 high, filled and bordered, with Order # centered inside, last argument 'true' tells it to fill the cell with the color specified
          $this->Cell(20,12,"Coding",1,0,'C',true);
          $this->Cell(20,12,"Sales Code",1,1,'C',true); //the 1 before the 'C' instead of 0 in previous lines tells it to move down by the height of the cell after writing this
          
          $this->Cell(20,12,$info['ordernum'],1,0,'C');
          $this->Cell(20,12,$info['coding'],1,0,'C');
          $this->Cell(20,12,$info['salescode'],1,1,'C');
          
          $this->Cell(40,12,"Name & Address",1,0,'C',true);
          $this->Cell(20,12,"Date",1,1,'C',true);
          $y = $this->GetY(); //Need the current Y value to reset it after the next line, as multicell automatically moves down after write
          $x = $this->GetX(); // Might need the X too
          $this->MultiCell(40,12,$info['customername'] . "\n" . $info['address'] . "\n" . $info['city'] . ', ' . $info['state'] . ' ' . $info['zip'],1,'L',false); //I assume the customer address info is broken up into multiple different pieces
          $this->SetY($y);  //Reset the write point
          $this->SetX($x + 40); //Move X to $x + width of last cell

          $this->Cell(20,36,date("format",strtotime($info['date'])),1,1,'C');  //Might be easier to use $this->Rect() to draw rectangles for address and date and then write the address and date into them without borders using SetX and SetY, if the borders don't line up or whatever

     }

     public function fillItems($items)
     {
          //You'd build the items list much the same way as above, using a foreach loop or whatever
          //Could also easily combine this function and the one above
     }
}

次に、pdf を作成するときは、次のようにします。

require_once('fpdf.php');
require_once('class.invoicepdf.php');
//Get whatever info you need to fill the pdf
$pdf = new InvoicePDF('P','mm','Letter');
$pdf->AddPage();
$pdf->FillHeadInfo($info);  //Could also pass $_POST and rely on the keys of the $_POST array
$pdf->FillItems($items);
$pdf->Output('filename.pdf','I');

ちなみに、$_POST から書き込もうとするのではなく、注文を DB に保存し、注文 ID をスクリプトに渡して、リンクと $_GET を介して PDF を書き込み、スクリプトを用意することをお勧めします。 DB から情報を取得します。このようにして、必要な情報のみを選択できます。

于 2011-01-09T05:14:38.497 に答える