Hi friends

Right now i am using fck editer to create the html page . I need create new html page fckediter and insert the values database and edit the values.

Now i configer the fck editer php application But i unable to insert and update the values database .

Please give me any idea.

Thanks
vssp

Recommended Answers

All 3 Replies

Hi vssp,

Take a look at this page: http://wiki.fckeditor.net/Developer%27s_Guide/Integration/PHP

Thats for FCK editor off the shelf. If you are using FCK Editor with a third party application then ususally the third party app has their own method of posting the fck editor content to the server.

The thing to notice is that FCK editor works just like a regular input box:
Example:

<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/FCKeditor/';
$oFCKeditor->Value = 'Default text in editor';
$oFCKeditor->Create() ;
?>

is equivalient to:

echo '<input type="text" name="FCKeditor1" value="Default text in editor" />';

Thanks ether......
vssp

You're most welcome :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.