I have an admin center. if I submit news I added "addslashes" like
this
$url = addslashes($url);
$title = addslashes($title);
$text = addslashes($text);
it works perfectly.
now I have the option to modify submitted entries. But if I have the input fields witht the submitted value in it (which I can modify now) it's not disaplaed correctly.
a text that is should be this:
he told he "to go home"
is displayed in the input field as:
he told
the rest is missing, what can I do?