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
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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.