is there a way to get a content of an html page or notepad, then display in on my html page to edit and save, where the edits will be permanent and also allow me to view the content like an individual page or in my desktop. using php or javascript?
or to simply put it embed a notepad on my page where i could edit it anywhere i am.
You can open and edit text documents in a browser, using stuff like:
The idea is that you open desired file via php [
file_get_contents], put its raw data into a<textarea>and enhance it with aforementioned plugins.Then once you submit your edit, you store new raw data into file.