On the first page(page1.php) which is an HTML form,content such as this is present:
<input type ="text" size="25" name="first_name" />
Form action is set as this: <form action="printpdf.php" method="post" id="print">
I would like to create a pdf file using FPDF to take whatever is entered in the 'first_name
' text field and be able to output in a PDF preferably by using $POST
command in PHP.
Any ideas on how I can do this using FPDF?
Many thanks for your help.