sql >> データベース >  >> RDS >> Mysql

各ページでテーブル列ヘッダーを繰り返す方法

    $ pdf-> AddPage();

    の前に、関数Header()内でテーブルヘッダーを指定する必要があります。

    次のようなものを試してください:

    <?php
    
    class h4PDF extends FPDF{
        function Header(){
            $this->Image('../../images/logo.png', 10,6,30);
            $this->SetFont('Arial', 'B', 12);
            $this->Cell(80);
            $this->Cell(50, 10, 'Total Spent Time', 0, 0,'C');
            $this->Ln(10);
            
            $this->SetX(70);
            $this->Cell(40,6,'User Name',1,0,'C',1);
            $this->SetX(105);
            $this->SetX(110);
            $this->Cell(42,6,'Total Spent Time',1,0,'C',1);
            $this->Ln();
        }
    }
    
    ?>



    1. oraclejdbcドライバーバージョンの狂気

    2. MySQL JOINはどのような順序で評価されますか?

    3. androidリモートデータベース接続の問題

    4. mysqlで値が負になるのを防ぐための最良の方法