I have a txt
file on my Dropbox account.
My webpage is hosted on a server and I can not upload files to it from home.
But I would like to insert some informations on my webpage and so I decided to write these notes on a txt
file and upload it to my Dropbox.
Now, the problem is:
- how to insert the
txt
file contents into myhtml
file so that when I update thetxt
file simply using Dropbox, the webpage is also update?**
I have the file index.html
and I tried to insert on it the tag
<?php file_get_contents("<address to my Dropbox file>"); ?>
which I found on other posts here. But nothing happens.