Jump to content

How to insert new line in fwrite


srose

Recommended Posts

Hi

I have this code:

<?php
   
	$myFile = "addresses.txt";
$fh = fopen($myFile, 'a') or die("can't open file");
fwrite($fh, $Address);
fclose($fh);
$num = $num + 1;
  ?>

 

$Address will store IP addresses. How can I get each new IP to go in it's own line?  Is there a way of having a number go before it aswell like this:

 

1.  xxx.xxx.xxx.xxx

2  xxx.xxx.xxx.xxx

Link to comment
https://forums.phpfreaks.com/topic/132629-how-to-insert-new-line-in-fwrite/
Share on other sites

<?php
    $num = 1;
	$myFile = "addresses.txt";
$fh = fopen($myFile, 'a') or die("can't open file");
fwrite($fh, $num)\n;
fwrite($fh, $Address)\n;
fclose($fh);
$num = $num + 1;
  ?>

 

For some reason the backslashes are not displaying but they are there.

Hello Rose,

 

I have tested your code and is working fine here. I have changed the permission of the file (addresses.txt).. Thats all..

 

<?php
    $num = 1;
    $myFile = "addresses.txt";
   $fh = fopen($myFile, 'a') or die("can't open file");
   fwrite($fh, $num);
   fwrite($fh, $Address);
   fclose($fh);
   $num = $num + 1;
  ?>

 

check this code..

 

Regards,

Joseph..

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.