0

このphp変数をpdfファイルに表示したい。しかし、エラーが発生します:- Pdf ファイルが '%Pdf-' で始まっていません

A.php には私のフォームが含まれています。投稿を使用して、他のprintpdf.phpに値を送信しています。ここで、printpdf.phpは特定の形式のpdfファイルを生成します。

A.php

 <form class="mid" action="printpdf.php" method="post"> 
 <input type="hidden" id="cname" name="cname" value="<?php echo $c_n[0]; ?>"/>
  <input type="submit" id="but" value="Print Challan"/>     
 </form>

printpdf.php

 <?php

  $c_n = $_POST['cname'];


  require('fpdf.php');
 class PDF extends FPDF
     {

     function Header()
    {
       $this->Image('image.jpg',5,5,200);
       $this->Ln(20);
       }

     //Page footer
     function Footer()
   {
       $this->SetFont('Arial','I',8);
       $this->Image('image1.jpeg',5,275,200);
       $this->SetXY(5, 284);
       $this->Cell(0,5,'This is a system generated ',0,2,'C');
       $this->Cell(0,5,'Page '.$this->PageNo().'/{nb}',0,0,'C');

       }
        }
         //Instanciation of inherited class

       $pdf=new PDF();
       $pdf->AliasNbPages();
       $pdf->AddPage();
       $pdf->SetFont('Times','B',15);
       $pdf->SetXY(5,42);
       $pdf->Cell(190,10,'Challan', 0,0,'C');
       $pdf->SetXY(5,52);
       $pdf->SetFont('Times','B',12);
       $pdf->Cell(150,18,'Name :-', 1,0,'L');


       $pdf->Cell(15,0,'$c_n', 0,0,'L');

       $pdf->SetXY(155,52);
       $pdf->Cell(50,9,'Challan No. :-', 1,2,'L');
       $pdf->Cell(50,9,'Date :-', 1,0,'L');
       $pdf->SetXY(5,70);
       $pdf->Cell(15,15,'Sno', 1,0,'C');
       $pdf->Cell(35,15,'Type', 1,0,'C');
       $pdf->Cell(45,15,'Make', 1,0,'C');
       $pdf->Cell(45,15,'Model', 1,0,'C');
       $pdf->Cell(45,15,'Serial No.', 1,0,'C');
       $pdf->Cell(15,15,'Qty', 1,0,'C');
       $pdf->SetXY(5,85);
       $pdf->SetFont('Times','',12);
       $pdf->Cell(15,165,'', 1,0,'L');
       $pdf->Cell(35,165,'', 1,0,'L');
       $pdf->Cell(45,165,'', 1,0,'L');
       $pdf->Cell(45,165,'', 1,0,'L');
       $pdf->Cell(45,165,, 1,0,'L');
       $pdf->Cell(170,165,'', 1,0,'L');
       $pdf->Cell(15,165,'', 1,0,'L');
        $pdf->SetXY(5,245);
       $pdf->SetFont('Times','B',12);
       $pdf->Cell(35,20,'Reciever Name :- ', 0,0,'L');
       $pdf->SetXY(125,245);
        $pdf->Cell(35,20,'Reciever Signature :- ', 0,0,'L');
       $pdf->Output();
          ?>

エラー: - ファイルが '%Pdf-' で始まっていません

4

4 に答える 4

0

エラーはこちら

      $pdf->Cell(35,165,'', 1,0,'L');
   $pdf->Cell(45,165,'', 1,0,'L');
   $pdf->Cell(45,165,'', 1,0,'L');//*
   $pdf->Cell(45,165,, 1,0,'L'); <<<<<<<<<<-----------------
   $pdf->Cell(170,165,'', 1,0,'L');
   $pdf->Cell(15,165,'', 1,0,'L');
    $pdf->SetXY(5,245);
   $pdf->SetFont('Times','B',12);
   $pdf->Cell(35,20,'Reciever Name :- ', 0,0,'L');
   $pdf->SetXY(125,245);
    $pdf->Cell(35,20,'Reciever Signature :- ', 0,0,'L');
    //*/
   $pdf->Output();

その行をに変更します$pdf->Cell(45,165,'', 1,0,'L');

あなたの参照に注意してください。つまり、私は使用します

 $str = '../fpdf/fpdf.php';

必要 ($str);

私のコードが画像内にある場所があるため、つまり $this->Image($_SESSION['raiz'].'imagens/mmp.png',5,5,200); 、fpdfライブラリと画像が同じフォルダーにある場合、すべてが正しいです。ところで。私はコードの正しいエラーをテストし、うまく動作します

于 2016-08-25T10:20:05.267 に答える
0

この方法を試してください:

<?php
 require('fpdf.php');
 class PDF extends FPDF
 {

 function Header()
  {
   $this->Image('image.jpg',5,5,200);
   $this->Ln(20);
   }

 //Page footer
 function Footer()
 {
   $this->SetFont('Arial','I',8);
   $this->Image('image1.jpeg',5,275,200);
   $this->SetXY(5, 284);
   $this->Cell(0,5,'This is a system generated ',0,2,'C');
   $this->Cell(0,5,'Page '.$this->PageNo().'/{nb}',0,0,'C');

   }
    }
     //Instanciation of inherited class

   if(isset($_POST['cname']))
   {$c_n = $_POST['cname'];

   $pdf=new PDF();
   $pdf->AliasNbPages();
   $pdf->AddPage();
   $pdf->SetFont('Times','B',15);
   $pdf->SetXY(5,42);
   $pdf->Cell(190,10,'Challan', 0,0,'C');
   $pdf->SetXY(5,52);
   $pdf->SetFont('Times','B',12);
   $pdf->Cell(150,18,'Name :-'.$c_n, 1,0,'L');


   $pdf->Cell(15,0,$c_n, 0,0,'L');

   $pdf->SetXY(155,52);
   $pdf->Cell(50,9,'Challan No. :-', 1,2,'L');
   $pdf->Cell(50,9,'Date :-', 1,0,'L');
   $pdf->SetXY(5,70);
   $pdf->Cell(15,15,'Sno', 1,0,'C');
   $pdf->Cell(35,15,'Type', 1,0,'C');
   $pdf->Cell(45,15,'Make', 1,0,'C');
   $pdf->Cell(45,15,'Model', 1,0,'C');
   $pdf->Cell(45,15,'Serial No.', 1,0,'C');
   $pdf->Cell(15,15,'Qty', 1,0,'C');
   $pdf->SetXY(5,85);
   $pdf->SetFont('Times','',12);
   $pdf->Cell(15,165,'', 1,0,'L');
   $pdf->Cell(35,165,'', 1,0,'L');
   $pdf->Cell(45,165,'', 1,0,'L');
   $pdf->Cell(45,165,'', 1,0,'L');
   $pdf->Cell(45,165,, 1,0,'L');
   $pdf->Cell(170,165,'', 1,0,'L');
   $pdf->Cell(15,165,'', 1,0,'L');
    $pdf->SetXY(5,245);
   $pdf->SetFont('Times','B',12);
   $pdf->Cell(35,20,'Reciever Name :- ', 0,0,'L');
   $pdf->SetXY(125,245);
    $pdf->Cell(35,20,'Reciever Signature :- ', 0,0,'L');
   $pdf->Output();
   }
      ?>
于 2013-05-17T14:52:35.267 に答える
0

hidden変数を解析するために入力フィールドを避けることをお勧めします。アクションを呼び出すときは、URL 自体を使用することをお勧めしますaction="printpdf.php?cname=XXXX"。変数がユーザーによって台無しにされる可能性がある場合は、次の 3 つのいずれかを実行します。i) 変数をサーバー セッションに格納します$_SESSION['cname']=XXXX;。ii) URL 文字列をエンコード、ハッシュ、または暗号化する。iii) printpdf.php ファイルで回復するときに変数をサニタイズします。隠しフィールドは操作が簡単で、データを解析する原始的な方法です。

于 2013-05-17T14:52:09.403 に答える