显示使用fpdf生成的pdf文件中的php变量

dluptydi  于 2023-01-16  发布在  PHP
关注(0)|答案(4)|浏览(135)

我希望这个php变量显示在pdf文件中。但它给出错误:- Pdf文件不以'%Pdf-'开始
php它包含了我的表单。通过使用post,我将值发送到其他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-”开始

up9lanfz

up9lanfz1#

我建议避免使用hidden输入字段来解析变量,在调用操作时最好使用url本身:action="printpdf.php?cname=XXXX"。如果用户可以破坏变量,请执行以下三项操作之一:i)将变量存储在服务器会话中:$_SESSION['cname']=XXXX;,其中它几乎不能被操纵;ii)编码、散列或加密URL串;iii)在printpdf.php文件中恢复时对变量进行消毒。隐藏字段很容易操作,是解析数据的一种原始方式。

bd1hkmkf

bd1hkmkf2#

请尝试以下方法:

<?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();
   }
      ?>
ssgvzors

ssgvzors3#

我还停留在同一点上,我想生成问题和选项阵列的问题纸。
不管你的php代码是什么,它必须在require('fpdf.php')之前;
FPDF不希望任何其他代码进入他的代码之间。
我希望这能解决问题。

lb3vh1jj

lb3vh1jj4#

错误在这里

$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';

要求($字符串);
因为有地方我的代码是一个在图像iidoE. $this->Image($_SESSION['raiz'].'imagens/mmp.png',5,5,200);如果你有你的fpdf库和图像在同一个文件夹中,那么一切都是正确的。顺便说一句。我测试代码正确的错误,它运行良好

相关问题