Folks,
I am having trouble using this editor when submitting to a mySQL database. I am trying to submit a long text field and if double quotes are used in the text, then it is cut off and not completely stored in the database. The text gets cut off right after the escape character '/'.
Anyone have any idea why this is happening or how to fix it?
I am using version 1.5
I am having trouble using this editor when submitting to a mySQL database. I am trying to submit a long text field and if double quotes are used in the text, then it is cut off and not completely stored in the database. The text gets cut off right after the escape character '/'.
Anyone have any idea why this is happening or how to fix it?
I am using version 1.5

RE: problem with (") when submitting to database
It looks like there is a function in the 'fckeditor.js' file to replace " with it's HTML equivilent. If this worked it would solve the problem but it doesnt seem to. Still need help....
RE: problem with (") when submitting to database
RE: problem with (") when submitting to database
Anybody has a clue on what is going on?
RE: problem with (") when submitting to database
I used str_replace('\"','"',$str);
RE: problem with (") when submitting to datab
$text=preg_replace('!(\\\\")!', '"', $text);
so no escapes \" for " are inserted in the database
RE: problem with (") when submitting to database
RE: problem with (") when submitting to database
RE: problem with (") when submitting to datab
http://www.allegro.pl
RE: problem with (") when submitting to datab