Hello,
I 'm using FCKeditor in a custom php page.
First problem is with '. If I write for example:
aaaas' aa
it is transformed as
aaaas\' aa
If you edit it again then it becomes aaaas\\\' aa and so on.
How can I overcome this?
Then there is a problem with inserting links. The appear as:
<a href=\"http://www.XXXXXX.net\">XXX</a> Those \ case a problem.
In my fckconfig.js I have:
FCKConfig.ProcessHTMLEntities = false ;
FCKConfig.IncludeLatinEntities = true ;
FCKConfig.IncludeGreekEntities = false ;
The context I'm writting is in greek.
thanks
Fri, 12/19/2008 - 15:35
#1
Re: Links aren't parsed correctlly
Re: Links aren't parsed correctlly
You are right I turned magic_quotes off and it's ok.
But what if I want to have magic_quotes on? should I iuse stripslashes before outputing the content from DB?
thanks