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
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
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
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");
> > >
> >
> > --
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
Like echo "foo\n"
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
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
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
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
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
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
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
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
13 matches
Mail list logo