> Hi,
>
> I have a question regarding using line breaks in PHP. I have the code
> something like:
>
> echo "1" . "\t " . $x . "\t" . $y . "\r\n";
>
> When I run the code, it looks like a whole blob of text, but when I use "View
> Source", the line breaks are formatted then correctly.
> Any
Alice Wei wrote:
Date: Mon, 9 Mar 2009 13:28:19 +0100
From: joc...@iamjochem.com
To: stut...@gmail.com
CC: aj...@alumni.iu.edu; php-general@lists.php.net
Subject: Re: [PHP] Line Break Problem
Stuart schreef:
2009/3/9 Alice Wei
I have a question regarding using line breaks in PHP. I have
> Date: Mon, 9 Mar 2009 13:28:19 +0100
> From: joc...@iamjochem.com
> To: stut...@gmail.com
> CC: aj...@alumni.iu.edu; php-general@lists.php.net
> Subject: Re: [PHP] Line Break Problem
>
> Stuart schreef:
> > 2009/3/9 Alice Wei
> >
> >> I have a q
Stuart schreef:
> 2009/3/9 Alice Wei
>
>> I have a question regarding using line breaks in PHP. I have the code
>> something like:
>>
>> echo "1" . "\t " . $x . "\t" . $y . "\r\n";
>>
>> When I run the code, it looks like a whole blob of text, but when I use
>> "View Source", the line brea
2009/3/9 Alice Wei
> I have a question regarding using line breaks in PHP. I have the code
> something like:
>
> echo "1" . "\t " . $x . "\t" . $y . "\r\n";
>
> When I run the code, it looks like a whole blob of text, but when I use
> "View Source", the line breaks are formatted then corre
Hello René,
The problem is the implode() function call (you are telling it concatenate all of
the lines into one). This is not tested, but try replacing:
> $fcontents_string = implode('', $fcontents);
>
> $fp = fopen($name.".db", "w+");
> fwrite($fp,$fcontents_string);
with:
for ($i=0; $
$string = nl2br($string)
This will change a new line into ; but make sure HTMLspecialchars aren't
in the same part.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators,
Have a look at file() :
http://www.php.net/manual/en/function.file.php
$lines = file('log_test.txt');
echo $lines[4]; // prints line #5
regards,
philip
On Fri, 27 Apr 2001, Gary wrote:
> Thanks for everyone's help on the original question. Now that I have
> gotten the line breaks in
just do
$content_str = implode("\n", $content);
at the end of the file.
Sincerely,
Maxim Maletsky
Founder, Chief Developer
PHPBeginner.com (Where PHP Begins)
[EMAIL PROTECTED]
www.phpbeginner.com
-Original Message-
From: Gary [mailto:[EMAIL PROTECTED]]
Sent: Saturday, April
At 22:23 26/4/2001 -0400, Joao Prado Maia wrote:
>Actually the correct sequence is \r\n on Windows platforms. Just a small
>note.
Yeah! You're right. I made a typo here:-)
Nice to know I'm not alone. See you at php-pt;-)
[]'s
Alex
--
PHP General Mailing List (http://www.php.net/)
To unsubsc
On Thu, 26 Apr 2001, Alex Piaz wrote:
> At 22:07 26/4/2001 -0400, you wrote:
> >Hi all,
> >I know how to get a line break in text. Is there a way to get a line break
> >between the user agent string below? I would line to print in a column
> >instead of a long row.
>
> Use \n\r concatening with
At 22:07 26/4/2001 -0400, you wrote:
>Hi all,
>I know how to get a line break in text. Is there a way to get a line break
>between the user agent string below? I would line to print in a column
>instead of a long row.
Use \n\r concatening with your actual string
See below:
>$newfile = fopen("
try \r
"\r\n" is equivalent to you pressing the return key.
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Wed, 14
On Wed, 14 Feb 2001 14:04, Deependra B. Tandukar wrote:
> Greetings!
>
> I know "\n" gives the new line and "\t" gives the tab. Is there any
> other code for them because this is not working in the web server where
> I host my web pages?
>
> Looking froward to hearing from you.
>
> Regards,
> DT
14 matches
Mail list logo