Adding $_POST to FPDF files?

I want to do this:

Edit some text and click submit - for html to $_post the info into a FPDF file…

im stuck here:
[php]<?php
require(‘fpdf.php’);

$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont(‘Arial’,‘B’,16);
$pdf->Cell(40,10,‘Hello World!’);
$pdf->AddPage();
$pdf->Cell(60,10,‘Powered by FPDF.’,0,1,‘C’);

$pdf-> Output();
?>[/php]

how can I add a $_POST attribute? If I do, it gives an error… plzz helpp

Sponsor our Newsletter | Privacy Policy | Terms of Service