-2
In the view.php file, I need to display a field that is already stored in database, of the type sweep, but when displaying I want the text to be shown skipping lines when finding the comma character (,). Example:
Text stored in variable in Database:
Poem is a textual genre
divided into stanzas and verses, each stanza consists of verses.
Result in view.php:
Poem is a textual genre divided into stanzas and verses
each stanza consists of verses.
<p align="justify"><?php echo $poema; ?></p>