How to save CKEDITOR in word document? Is this possible? I reading google 1 day and cannot found the solution. I tried this but it doesnt work:
$content=addslashes(trim($_REQUEST['CKEditor']))
$docfile="convert.doc";
$fp = fopen("files/".$docfile, "w+");
fwrite($fp, $content);
When i download this file It seems that it is not word document. It is a blank document but it has the contents that I want.