Connecting Tech Pros Worldwide Help | Site Map

newline "\n" not working.

stevek
Guest
 
Posts: n/a
#1: May 14 '06
Following code does not produce any new lines. Any ideas.

echo "This spans\multiple lines. The newlines will be\noutput as well.";
stevek
Guest
 
Posts: n/a
#2: May 14 '06

re: newline "\n" not working.


Sorry ... spell checker corrected some.

echo "This spans\nmultiple lines. The newlines will be\noutput as well.";

stevek wrote:[color=blue]
> Following code does not produce any new lines. Any ideas.
>
> echo "This spans\multiple lines. The newlines will be\noutput as well.";[/color]
Alan Little
Guest
 
Posts: n/a
#3: May 14 '06

re: newline "\n" not working.


Carved in mystic runes upon the very living rock, the last words of
stevek of comp.lang.php make plain:
[color=blue]
> stevek wrote:[color=green]
>> Following code does not produce any new lines. Any ideas.
>>
>> echo "This spans\multiple lines. The newlines will be\noutput as
>> well.";[/color]
>
> Sorry ... spell checker corrected some.
>
> echo "This spans\nmultiple lines. The newlines will be\noutput as
> well.";[/color]

So, you're saying that this will output the literal string:

This spans\nmultiple lines. The newlines will be\noutput as well.

Is the bit you posted above a direct cut-and-paste from your script? If
not, check that you are in fact using double quotes and not single.

--
Alan Little
Phorm PHP Form Processor
http://www.phorm.com/
rlee0001
Guest
 
Posts: n/a
#4: May 14 '06

re: newline "\n" not working.


HTML ignores excess whitespace including newlines. Are you viewing the
page in the browser or viewing the source for the page? If you are
viewing the output in the browser window itself, is the text contained
in a PRE tag?

-Robert

stevek
Guest
 
Posts: n/a
#5: May 14 '06

re: newline "\n" not working.


<?php

$conn = @mysql_connect( "campania", "sfk", "" )
or die( "Sorry - could not connect to MySQL" );
echo "$conn\n";
//$rs1 = @mysql_create_db( $_REQUEST['db'] );
echo "This spans\nmultiple lines. The newlines will be\noutput as well.";
?>

produces......

Resource id #2 This spans multiple lines. The newlines will be output as
well.


Alan Little wrote:[color=blue]
> Carved in mystic runes upon the very living rock, the last words of
> stevek of comp.lang.php make plain:
>[color=green]
>> stevek wrote:[color=darkred]
>>> Following code does not produce any new lines. Any ideas.
>>>
>>> echo "This spans\multiple lines. The newlines will be\noutput as
>>> well.";[/color]
>> Sorry ... spell checker corrected some.
>>
>> echo "This spans\nmultiple lines. The newlines will be\noutput as
>> well.";[/color]
>
> So, you're saying that this will output the literal string:
>
> This spans\nmultiple lines. The newlines will be\noutput as well.
>
> Is the bit you posted above a direct cut-and-paste from your script? If
> not, check that you are in fact using double quotes and not single.
>[/color]
stevek
Guest
 
Posts: n/a
#6: May 14 '06

re: newline "\n" not working.


Please see prior post.

rlee0001 wrote:[color=blue]
> HTML ignores excess whitespace including newlines. Are you viewing the
> page in the browser or viewing the source for the page? If you are
> viewing the output in the browser window itself, is the text contained
> in a PRE tag?
>
> -Robert
>[/color]
huckphin
Guest
 
Posts: n/a
#7: May 14 '06

re: newline "\n" not working.


All you need to do is statement separator (the period (.)). Then put
your code in two statements such as this.

Line #5 is [echo "$conn\n";]
Line #5 needs to be corrected to [echo $conn."\n";]

LIne #7 is [echo "This spans\nmultiple lines. The newlines will
be\noutput as well."; ]
Line #7 needs to be
[echo "This spans"."\n"."multiple lines. The newlines will
be"."\n"."output as wee.";]

-Huck Finn

Jerry Stuckle
Guest
 
Posts: n/a
#8: May 14 '06

re: newline "\n" not working.


stevek wrote:[color=blue]
> Please see prior post.
>
> rlee0001 wrote:
>[color=green]
>> HTML ignores excess whitespace including newlines. Are you viewing the
>> page in the browser or viewing the source for the page? If you are
>> viewing the output in the browser window itself, is the text contained
>> in a PRE tag?
>>
>> -Robert
>>[/color][/color]

Steve,

No, you see Robert's post. He is correct. Check the page source.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Alan Little
Guest
 
Posts: n/a
#9: May 14 '06

re: newline "\n" not working.


Carved in mystic runes upon the very living rock, the last words of
stevek of comp.lang.php make plain:
[color=blue]
> Alan Little wrote:[color=green]
>> Carved in mystic runes upon the very living rock, the last words of
>> stevek of comp.lang.php make plain:
>>[color=darkred]
>>> stevek wrote:
>>>> Following code does not produce any new lines. Any ideas.
>>>>
>>>> echo "This spans\multiple lines. The newlines will be\noutput as
>>>> well.";
>>> Sorry ... spell checker corrected some.
>>>
>>> echo "This spans\nmultiple lines. The newlines will be\noutput as
>>> well.";[/color]
>>
>> So, you're saying that this will output the literal string:
>>
>> This spans\nmultiple lines. The newlines will be\noutput as well.
>>
>> Is the bit you posted above a direct cut-and-paste from your script?
>> If not, check that you are in fact using double quotes and not
>> single.
>>[/color]
> <?php
>
> $conn = @mysql_connect( "campania", "sfk", "" )
> or die( "Sorry - could not connect to MySQL" );
> echo "$conn\n";
> //$rs1 = @mysql_create_db( $_REQUEST['db'] );
> echo "This spans\nmultiple lines. The newlines will be\noutput as
> well."; ?>
>
> produces......
>
> Resource id #2 This spans multiple lines. The newlines will be output
> as well.[/color]

If you mean it outputs this in your browser (I don't see a shebang line,
so I assume you're not running this on the command line), then Robert
gave you the answer. A newline is equivalent to a space, in HTML.

--
Alan Little
Phorm PHP Form Processor
http://www.phorm.com/
Rik
Guest
 
Posts: n/a
#10: May 14 '06

re: newline "\n" not working.


huckphin wrote:[color=blue]
> All you need to do is statement separator (the period (.)). Then put
> your code in two statements such as this.
>
> Line #5 is [echo "$conn\n";]
> Line #5 needs to be corrected to [echo $conn."\n";]
>
> LIne #7 is [echo "This spans\nmultiple lines. The newlines will
> be\noutput as well."; ]
> Line #7 needs to be
> [echo "This spans"."\n"."multiple lines. The newlines will
> be"."\n"."output as wee.";][/color]

Pure nonsense.

Grtz,
--
Rik Wasmus


Jaspreet
Guest
 
Posts: n/a
#11: May 14 '06

re: newline "\n" not working.



stevek wrote:[color=blue]
> Following code does not produce any new lines. Any ideas.
>
> echo "This spans\multiple lines. The newlines will be\noutput as well.";[/color]

You could probably do one of the following:

echo "Line 1<br>Line2";

OR

echo "<pre>Line 1\nLine2</pre>";

Kevin Wells
Guest
 
Posts: n/a
#12: May 14 '06

re: newline "\n" not working.


In message <SHu9g.57309$Fs1.43996@bgtnsc05-news.ops.worldnet.att.net>
stevek <stevek@somewhere.org> wrote:
[color=blue]
>Sorry ... spell checker corrected some.
>
>echo "This spans\nmultiple lines. The newlines will be\noutput as well.";
>[/color]

Change \n to <br>

--
Kev Wells http://kevsoft.topcities.com
http://kevsoft.co.uk/
ICQ 238580561
IF your nose runs and your feet smell it means your upside down.
Jerry Stuckle
Guest
 
Posts: n/a
#13: May 14 '06

re: newline "\n" not working.


huckphin wrote:[color=blue]
> All you need to do is statement separator (the period (.)). Then put
> your code in two statements such as this.
>
> Line #5 is [echo "$conn\n";]
> Line #5 needs to be corrected to [echo $conn."\n";]
>
> LIne #7 is [echo "This spans\nmultiple lines. The newlines will
> be\noutput as well."; ]
> Line #7 needs to be
> [echo "This spans"."\n"."multiple lines. The newlines will
> be"."\n"."output as wee.";]
>
> -Huck Finn
>[/color]

Sorry, Huck. It will all come out in one line. Try it yourself in an HTML page.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
william.clarke@gmail.com
Guest
 
Posts: n/a
#14: May 14 '06

re: newline "\n" not working.


stevek pass it through nl2br...

<?php
echo nl2br("This spans\multiple lines. The newlines will be\noutput as
well.");
?>

http://au.php.net/manual/en/function.nl2br.php

huckphin
Guest
 
Posts: n/a
#15: May 16 '06

re: newline "\n" not working.


Yea, so my previous post was wrong. For some reason I was thinking
that stevek was referring to the output inside the source code to make
go to a new line. My mistake. Thank you for the correction, though.

Closed Thread