0

is there a way that when my users filled in everything in an html form, then there is a download PDF button and these datas will pass to a PDF and save as a pdf to the desktop, however the client does not allow me to use any of the Server side script.

max li
  • 2,417
  • 4
  • 30
  • 44

2 Answers2

-1

You could have used FPDF Library, but it is server side solution. Probably it is impossible to do without any server side script.

Edit:

Although, I have just find some JS solution. Read this: Generating PDF files with Javascript

Community
  • 1
  • 1
user1292810
  • 1,702
  • 7
  • 19
  • 38
-1

Yeah there is, but you'd have to use a 3rd party solution like pdfmyform.

You just put a link on your webpage and the link transmits all your page & form info to the webservice and returns a PDF. You'd only have to think if you're ok with sending all the content over to a 3rd party.

user1914292
  • 1,586
  • 13
  • 38