The ckEitor does not save the single inverted comma in my database. All other characters and special characters all saving except the single inverted comma.
Asked
Active
Viewed 170 times
1 Answers
1
do this before saving to DB
$formattedContent = htmlspecialchars($content, ENT_QUOTES);
and when showing
html_entity_decode($data, ENT_QUOTES);
This worked fine on mine.

Abdulla Nilam
- 36,589
- 17
- 64
- 85