Jump to content

line breaks in a text file


JPark

Recommended Posts

I have a php page with a form that, upon submit, generates a text file of the person's choices -- using it as a flat file.

 

I want to start a new line with each entry so I used \n\r as in

$line1= $today."^".$_POST['email']."^".$value;
foreach ($sector_numbers as $key => $value)
{
$line = "{$line1}^{$value}\n\r";
$file_write = fwrite($file_handle, $line);
}

 

The problem is that my text file shows little boxes instead of new lines (see attachment).

 

Why?  How can I fix it?

 

Thanks!

 

Joe

 

 

 

[attachment deleted by admin]

Link to comment
https://forums.phpfreaks.com/topic/192980-line-breaks-in-a-text-file/
Share on other sites

salathe,

 

Well, I changed the code and tested it and doggonit you are right!

 

While your analogy makes sense NOW, before I was just thinking of them as line breaks in different languages as in

 

"Hi!  Hola!" is pretty much the same as "Hola!  Hi!"

 

I stand sit corrected.

 

Thanks for clarifying!!

 

Joe

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.