Alessandro
Alessandro

Reputation: 31

PHP create savable PDF

I know, it is posible to create PDF's from PHP. fpdf, tcpdf, ezpdf, zend_pdf are some examples. Al those libraries does not support creating a "savable pdf".

I mean by that, a pdf with some input fields, and after entering the fields, just save the complete pdf, with the data.

Anybody idea's?

Alessandro

Upvotes: 3

Views: 614

Answers (1)

Petah
Petah

Reputation: 46050

Check out Webkit to PDF. You would simply need to create an HTML page from the input and then use Webkit to PDF to convert it.

Upvotes: 4

Related Questions