Hi.
Let me first start by explaining the goal.
I would like to be able to edit a newsletter. The newsletter is an html file. That html file is stored on the server. User's access this html file on a daily basis by going to a web address. I would like to setup a sort of admin page that contain CKEditor. When that admin page loads I want CKEditor to open the html file stored on the server. I want to then edit the html file and have the option where it saves it back on the server.
Does this make since?
Any help is greatly appreciated.
Let me first start by explaining the goal.
I would like to be able to edit a newsletter. The newsletter is an html file. That html file is stored on the server. User's access this html file on a daily basis by going to a web address. I would like to setup a sort of admin page that contain CKEditor. When that admin page loads I want CKEditor to open the html file stored on the server. I want to then edit the html file and have the option where it saves it back on the server.
Does this make since?
Any help is greatly appreciated.

Re: Help With Reading a File then Editing it
Re: Help With Reading a File then Editing it
Re: Help With Reading a File then Editing it
Re: Help With Reading a File then Editing it
I am newbee and also facing same problem.
Would any one can help to figure it out ?
PLZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ
Re: Help With Reading a File then Editing it
Setup the editor like this:
Then, upon hitting the submit button "example.php" is called. In this file you need to store something like:
<?php $postArray = &$_POST; $x=fopen("OLDFilename.htm", "w"); fwrite($x, $postArray["editor1"]); fclose($x); ?>