+ 8
How can i include a word document in my website?
15 odpowiedzi
+ 6
Use Django... file.read, file .open and so on... Hope you get the point.
Django is just py but used in web
+ 5
thanks
+ 4
thanks alot
+ 3
@milan.k
I tried that but it's not working
+ 3
the link
+ 3
that's what I have
<a href="puritan Ltd html" target="_blank">Catalogue </a>
+ 2
You need to have valid url in href or if the document is on same server as html page path to document... like "/document-name.doc"... No spaces in href.
+ 2
You don't need target blank since word can't be opened in browser
+ 2
You're welcome
+ 2
include is not for words it is just for php and another web codes , to set a word document to your website you can set the link to download it or use an word reader module ... search for it there are modules.
+ 1
To link word document you need to upload it somewhere and then use its address in <a> tag. To show the content of actual document upload it in Google docs and then call the doc url with <iframe>.
+ 1
What exactly? Link or view in browser?
+ 1
<a href="http://url-of-a-word-document">some name</a>
+ 1
When you click on this it should offer you to save a document.
0
in php you can use file tag with it's various operations like fopen, fcopy, fread, fclose... search this on web and implement