When I edit a data value, the output it prints includes the HTML entity along with the value itself.
Example:
- Expected text:
Absence &
- Obtained text:
<p>Ausence &</p>
I'm using Code Igniter 4 and MySQL for the database, and CKEditor text editor to modify the mentioned fields.
The collations that I use in the database is "utf8mb4_0900_ai_ci" and "utf8mb4_general_ci" in the fields "text type" of the table.
I've tried changing the collations of both the database and the tables to no avail in PhpMyAdmin.
Would someone know how to help me?
Thanks!!!