Hard question.
I have a very long form when a user writes a lot of data. I need to save the form for future reading (pdf, html or even jpg will do), but I need to save it with the data that the user wrote. This must be done when submitting the form.
I know that this will not be possible only with PHP, but is it possible with a little help from javascript-ajax?
I cannot offer the user to print the page, and I need to save the view without any other input from the user (next to submit).
Any ideas?
EDIT:
in a nutshell,
Is it possible to create a pdf file from this page without sending data? Is there a way that fpdf (or others) could โreadโ and save what is currently on the screen, just like the โprintโ function?
Imagine a long looong form with a โsave as PDFโ button that saves the current page (with user input) WITHOUT submitting the form ....
source share