When i'm submit the sample on demo web site, the result with quote is good :
src="/components/FCKeditor/filemanager/browse/sample_html/images/pen.jpg"
When i'm submit on my server the result is :
src=\"/components/FCKeditor/filemanager/browse/sample_html/images/pen.jpg\"
how I can desactivate the \ ?
thank you very much for you help !
src="/components/FCKeditor/filemanager/browse/sample_html/images/pen.jpg"
When i'm submit on my server the result is :
src=\"/components/FCKeditor/filemanager/browse/sample_html/images/pen.jpg\"
how I can desactivate the \ ?
thank you very much for you help !
RE: why add slashes with quote ??
While I haven't studied this project in detail, if you are using PHP it will automatically add slashes to quotes and other characters to avoid problems in form submissions.
You would have to specifically disable this option with ini_set() if this is indeed causing the problem.
Check out http://www.php.net/ini_set for more details.
RE: why add slashes with quote ??
well the thing is, with PHP, we usually use addslashes() to prevent any error, so if you want to re-insert your text in fckeditor just use stripslashes(), it will remove the slashes ...
hope it helped you