Re: [PHP] Line feed in a echo

2005-04-26 Thread M. Sokolewicz
Ken wrote: On 4/26/05, Mario de Frutos Dieguez <[EMAIL PROTECTED]> wrote: Andri Heryandi escribió: Use echo "something "; is that what you mean? Mario de Frutos Dieguez wrote: How can i make a line feed in a echo instruction? like printf("foo\n"); yes that's it thx -- Mario de Frutos Dieguez Div

Re: [PHP] Line feed in a echo

2005-04-26 Thread Ken
On 4/26/05, Mario de Frutos Dieguez <[EMAIL PROTECTED]> wrote: > Andri Heryandi escribió: > > > Use echo "something "; > > > > is that what you mean? > > > > > > Mario de Frutos Dieguez wrote: > > > >> How can i make a line feed in a echo instruction? like printf("foo\n"); > >> > > > yes that's it

Re: [PHP] Line feed in a echo

2005-04-26 Thread Mario de Frutos Dieguez
Andri Heryandi escribió: Use echo "something "; is that what you mean? Mario de Frutos Dieguez wrote: How can i make a line feed in a echo instruction? like printf("foo\n"); yes that's it thx -- Mario de Frutos Dieguez División de Ingeniería del Software y Comunicaciones CARTIF -Parque Tecnológ

Re: [PHP] Line feed in a echo

2005-04-26 Thread Ken
On 4/26/05, Ken <[EMAIL PROTECTED]> wrote: > On 4/26/05, Andri Heryandi <[EMAIL PROTECTED]> wrote: > > Use echo "something "; > > > > is that what you mean? > > > > > > Mario de Frutos Dieguez wrote: > > > > > How can i make a line feed in a echo instruction? like printf("foo\n"); > > > > > > > --

Re: [PHP] Line feed in a echo

2005-04-26 Thread Ken
On 4/26/05, Andri Heryandi <[EMAIL PROTECTED]> wrote: > Use echo "something "; > > is that what you mean? > > > Mario de Frutos Dieguez wrote: > > > How can i make a line feed in a echo instruction? like printf("foo\n"); > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscr

Re: [PHP] Line feed in a echo

2005-04-26 Thread Chris Ramsay
Like echo "foo\n" -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Line feed in a echo

2005-04-26 Thread Andri Heryandi
Use echo "something "; is that what you mean? Mario de Frutos Dieguez wrote: How can i make a line feed in a echo instruction? like printf("foo\n"); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Line feed in a echo

2005-04-26 Thread Mario de Frutos Dieguez
How can i make a line feed in a echo instruction? like printf("foo\n"); -- Mario de Frutos Dieguez División de Ingeniería del Software y Comunicaciones CARTIF -Parque Tecnológico Boecillo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] line feed

2005-03-04 Thread Tom Rogers
Hi, Saturday, March 5, 2005, 12:38:20 AM, you wrote: BS> Hello. BS> How do i print a line return using the echo command, for when i see the BS> page source, BS> i get the code line by line and not all in the same line. BS> using double quotes ( " ), i can put \n at the end and i get the result B

Re: [PHP] line feed

2005-03-04 Thread Richard Lynch
Bruno Santos wrote: > How do i print a line return using the echo command, for when i see the > page source, > i get the code line by line and not all in the same line. > > using double quotes ( " ), i can put \n at the end and i get the result > i want, > but, using sinle quotes ( ' ), \n doesnt w

Re: [PHP] line feed

2005-03-04 Thread tg-php
echo '' . chr(10); chr(10) should be line feed and chr(13) is a carriage return (aka "\r"). Unless I got those mixed up. But yes, you can do that. Or you could even cheat and do: echo '' . "\n"; -TG = = = Original message = = = Double quotes: echo "\n"; single quotes: echo ''; c

Re: [PHP] line feed

2005-03-04 Thread Jason Petersen
On Fri, 04 Mar 2005 14:38:20 +, Bruno Santos <[EMAIL PROTECTED]> wrote: > Hello. > > How do i print a line return using the echo command, for when i see the > page source, > i get the code line by line and not all in the same line. > > using double quotes ( " ), i can put \n at the end and i

[PHP] line feed

2005-03-04 Thread Bruno Santos
Hello. How do i print a line return using the echo command, for when i see the page source, i get the code line by line and not all in the same line. using double quotes ( " ), i can put \n at the end and i get the result i want, but, using sinle quotes ( ' ), \n doesnt work. if i use double qu