ThunderAI Posted November 26, 2008 Share Posted November 26, 2008 I know there are many WYSIWYG editors out there, but what would be the best to do the following: I have a PHP script that dynamicaly loads an HTML document using the file_get_contents function. In the administration section I would like to modify that HTML file remotely. What is the best approach to do that? Quote Link to comment https://forums.phpfreaks.com/topic/134289-remote-html-editing/ Share on other sites More sharing options...
DeanWhitehouse Posted November 26, 2008 Share Posted November 26, 2008 Is the HTML file saved on your server? If so i think, although am not sure, that you will need to read the page, then get the source and put it in a textarea and then when you save changes rewrite over the page with the new one (changes included) Quote Link to comment https://forums.phpfreaks.com/topic/134289-remote-html-editing/#findComment-699106 Share on other sites More sharing options...
Maq Posted November 26, 2008 Share Posted November 26, 2008 If it's generated dynamically how are you going to edit it? Did you mean the PHP script? What exactly do you mean by: In the administration section I would like to modify that HTML file remotely. Do you want some kind of interface to edit the PHP file? Or am I making this problem more complicated than it really is... ??? Quote Link to comment https://forums.phpfreaks.com/topic/134289-remote-html-editing/#findComment-699107 Share on other sites More sharing options...
ThunderAI Posted November 26, 2008 Author Share Posted November 26, 2008 All i mean is that the HTML file is on the server and I want the administrator to load the file be able to edit it and then save it. Loading it into a textox sounds like a good idea, how would i save it? Quote Link to comment https://forums.phpfreaks.com/topic/134289-remote-html-editing/#findComment-699119 Share on other sites More sharing options...
DeanWhitehouse Posted November 26, 2008 Share Posted November 26, 2008 I already said You will need to rewrite the file using fwrite i believe. Quote Link to comment https://forums.phpfreaks.com/topic/134289-remote-html-editing/#findComment-699121 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.