i wanna to use FPDF to convert html page to pdf file, user will input the item(s) they ordered from a form, after will come out the items for each will listed in a html table format and output as pdf for offline reference.
Now is what i annoyed to deal with fpdf, i want to copy all content from the html table items which user entered previously, convert it to a pdf file and email to the user, but from the example tough by fpdf are no guidance of how to pass previous page contents into it class -> cell(),
PHP Code:
$pdf->Cell(0,10,'Content_of_previous_page');
hope somebody here can give me an assist of that,
thanks in advance.