Hello,
Thankyou for your reply.
Can you please be more elaborate.
I have a html file about.html or a php file..
Can you provide me code for the php file to update the about.html
thank you..
Main Topics
Browse All TopicsHello
My client does not have a cms. He has only 1 html page, how can I use ckeditor and make the client to edit that page?
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You would have to change the file name for the webpage to about.php. The editable content within about.php would be contained in a separate file, called say about_content.html. The contents of this file would be included in about.php by the following code where the content used to be: -
<?php include_once('about_conten
about_content.html would need to be writeable by the web server (write permissions for IUSR in windows or 0777 permissions on linux/unix. The admin webpage with the form that contains the instance of fckeditor would contain php processing to read the contents of about_content.html into the editor. When the form is submitted, the contents of the editor overwrites the contents of about_content.html.
Initializing: - http://docs.cksource.com/C
The initial data for the editor can be read from the file using: -
<?php
$data = file_get_contents('about_c
?>
The final edit can be saved to the file using: -
<?php
$new_data = $_POST['content'];
$put_new_content = file_put_contents('about_c
?>
Refer to this document: -
http://docs.cksource.com/C
The folders that you configure the uploader to need to be writeable by the web server.
Business Accounts
Answer for Membership
by: v2MediaPosted on 2009-10-13 at 22:28:08ID: 25567517
Got php or other server-side scripting support?
Put the editable into a separate html file and use server-side scripting to include it in the main webpage. Give the server write permissions to the included file and have the POST value for the content overwrite the content in the include.