The forum operates in read-only mode. Please head to StackOverflow for support.
$postedValue = $_POST['editorfeld']; $postedValue = htmlspecialchars_decode($postedValue); $postedValue = str_replace('\\"', '"', $postedValue);
function htmlspecialchars_decode_PHP4($uSTR) { return strtr($uSTR, array_flip(get_html_translation_table(HTML_ENTITIES, ENT_QUOTES))); }
Re: Leave the quotes alone :)
$postedValue = $_POST['editorfeld']; $postedValue = htmlspecialchars_decode($postedValue); $postedValue = str_replace('\\"', '"', $postedValue);dont ask me why, it works for me, i hope for you too.
Regards, SerM
Re: Leave the quotes alone :)
function htmlspecialchars_decode_PHP4($uSTR) { return strtr($uSTR, array_flip(get_html_translation_table(HTML_ENTITIES, ENT_QUOTES))); }Re: Leave the quotes alone :)