D
D
Dmitry2015-11-28 21:18:55
PHP
Dmitry, 2015-11-28 21:18:55

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

4 answer(s)
D
Dmitry, 2015-11-29
@Lostmain

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.

X
xmoonlight, 2015-11-28
@xmoonlight

I don't know what to answer...

A
Alexander Taratin, 2015-11-28
@Taraflex

To the beginning of the script
header("Content-Type: text/plain");

A
Artur Yalaltdinov, 2015-11-29
@crazy_str

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 question

Ask a Question

731 491 924 answers to any question