3

I use the tinyMCE editor, I save its data with mysql, in html from what I can see.

How can I export this data of my users to pdf and docx with php (serverside) ?

I believe the free edition of phpDocx lacks that functionality (embedHTML function missing)

Is there an alternative ?

Shankar Narayana Damodaran
  • 68,075
  • 43
  • 96
  • 126
vga None
  • 73
  • 2
  • 6

1 Answers1

0

You should write your html code to a html file serverside and use a library like this one to create a pdf file.

Thariama
  • 50,002
  • 13
  • 138
  • 166
  • 1
    Thank you. I've already implemented it using the Tcpdf library which can also write html to a pdf. – vga None Aug 20 '12 at 11:32