I'm using the editor TinyMCE
, the data is saved correctly in the database, however I do not know how to do it and display it on the screen. It's coming back to me like this.
Would anyone know how to solve it? Thanks to the community.
I'm using laravel, my solution was to put {!! !!}
in the view.
Save to bank: $texto = addslashes($_POST['texto');
Read from bank: $texto = stripslashes($linha['texto']); echo $texto;