This topic is locked

display a message

3/10/2008 3:16:54 AM
PHPRunner General questions
R
rainerwolf author

Hi,
i want to display a message with many lines. What must i do, if i want to insert a new line feed?
echo "first line"

echo "second line" and so on
first line

second line
Rainer

L
laonian 3/10/2008

Hi,

i want to display a message with many lines. What must i do, if i want to insert a new line feed?
echo "first line"

echo "second line" and so on
first line

second line
Rainer



You may try:

echo "first line";

echo "
";

echo "second line";

echo "
";

and so on

R
rainerwolf author 4/7/2008



You may try:

echo "first line";

echo "
";

echo "second line";

echo "
";

and so on


Alshine,

thank you very much, it works
Kind Regards

Rainer