Answer the question
In order to leave comments, you need to log in
How to organize text output using php?
Hello!
The essence of the question is that my text is displayed in a continuous line without paragraphs. Using a tag is not an option, as it breaks the style and the text goes offscreen. What other ways are there to display data on the site?
Answer the question
In order to leave comments, you need to log in
Thanks everyone for the replies! Solved the issue with nl2br();
As a result, something like this turned out:
I confess, I had to first climb into the documentation, and then clog up the space here. Sorry.
To the beginning of the scriptheader("Content-Type: text/plain");
white-space: normal;/*Свойство white-space устанавливает, как отображать пробелы между словами. В обычных условиях любое количество пробелов в коде HTML показывается на веб-странице как один. Исключением является тег <pre>, помещенный в этот контейнер текст выводится со всеми пробелами, как он был отформатирован пользователем. Таким образом, white-space имитирует работу тега <pre>, но в отличие от него не меняет шрифт на моноширинный. */
word-wrap: break-word;/*Свойство word-wrap указывает, переносить или нет длинные слова, которые не помещаются по ширине в заданную область. Данное свойство носит черновой характер и при валидации документа на CSS3 выдает ошибку.*/
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question