Text before Submit: <a href="start.php?forum=ja&navi=700_forum"> Text after Submit: <a href="\"start.php?forum=ja&navi=700_forum\""> Text after some tries: <a href="\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\"start.php?forum=ja&navi=700_forum\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"">
I use a form: <form FORM ENCTYPE="multipart/form-data" action='<?php $SELF_PHP ?>' method="post" accept-charset="ISO-8859-1 ISO-8859-2">
How can i solve this Problem in FCKeditor? I didnt find anything by google as well as Pav.
I have this problem, but our text is not saved in a database, and doesn't get processed by PHP (it's being saved as an xml node -- and is only ever viewed as HTML during editing in CKEDITOR). So this solution doesn't work for me. I've found no other postings anywhere that explain where the "\" conversion/munging is happening.
I'm still looking around to try to figure out how to process the textarea as CDATA (both outbound and inbound - when you view 'Source'). Attempts so far have had no effect. Perhaps someone else has a breadcrumb I can follow?
Re: extra tags & /'s added problem! <img class="\&am
My FCKeditor Version: 2.5.1
Text before Submit: <a href="start.php?forum=ja&navi=700_forum">
Text after Submit: <a href="\"start.php?forum=ja&navi=700_forum\"">
Text after some tries: <a href="\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\"start.php?forum=ja&navi=700_forum\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"">
I use a form:
<form FORM ENCTYPE="multipart/form-data" action='<?php $SELF_PHP ?>' method="post" accept-charset="ISO-8859-1 ISO-8859-2">
How can i solve this Problem in FCKeditor? I didnt find anything by google as well as Pav.
Re: extra tags & /'s added problem! <img class="\&am
example --> in edit mode case
<?php
$sBasePath = '../../lib/fckeditor/';
$oFCKeditor = new FCKeditor('elm1') ;
$oFCKeditor->BasePath= $sBasePath;
$oFCKeditor->Config['EnterMode'] = 'br';
$oFCKeditor->Value = stripslashes($rs->fields['header']) ;
$oFCKeditor->Create() ;
?>
Re: extra tags & /'s added problem! <img class="\&am
I'm still looking around to try to figure out how to process the textarea as CDATA (both outbound and inbound - when you view 'Source'). Attempts so far have had no effect. Perhaps someone else has a breadcrumb I can follow?