How can I create word document and add certain elements inside so it can be downloaded or sent by an email?
What can you suggest me? Some examples? Is this doable with JavaScript or PHP?
How can I create word document and add certain elements inside so it can be downloaded or sent by an email?
What can you suggest me? Some examples? Is this doable with JavaScript or PHP?
You could create docx documents (zipped XML files). This is possible with php and you can probably do it with JS too. A bit heavier variant would be to actually use MS Word if you have access to a MS Server or openoffice/libreoffice with bindings.
You can use software like
html2rtf translates HTML to RTF. Using this program and the standard windows help compiler, you can convert hyperlinked Web pages into Windows HLP files.
hh2rtf is a set of freeware perl scripts that converts most HtmlHelp formatted HTML to WinHelp-ready RTF.
htm2rtf is another converter for PC/DOS.
html2wrd.zip is a Microsoft Word Basic program to convert HTML documents (including lists, tables and other formatting) into WinWord documents.
Hope this helps out