jamesxg1 Posted July 21, 2009 Share Posted July 21, 2009 hiya i need to make a new line in my text file from php, iv tryed /n /r /t none of them are working is there anything else you can use ? James. Link to comment https://forums.phpfreaks.com/topic/166809-solved-new-line-in-text-file/ Share on other sites More sharing options...
rhodesa Posted July 21, 2009 Share Posted July 21, 2009 it's \n and make sure it's in double quotes: $content = "Line 1\nLine2"; Link to comment https://forums.phpfreaks.com/topic/166809-solved-new-line-in-text-file/#findComment-879602 Share on other sites More sharing options...
WolfRage Posted July 21, 2009 Share Posted July 21, 2009 Disregard got beat to it. <?php echo "\n"; ?> Make sure to use double qoutes and use the right slash. Link to comment https://forums.phpfreaks.com/topic/166809-solved-new-line-in-text-file/#findComment-879604 Share on other sites More sharing options...
jamesxg1 Posted July 21, 2009 Author Share Posted July 21, 2009 it's \n and make sure it's in double quotes: $content = "Line 1\nLine2"; i tryed this, $contents .= '("' . $contentt . '"),' . "\n"; $open = fopen('data.txt', "a+"); $write = fwrite($open, "$contents"); But no luck all i got instead of a new line is this little rectangle box symbol but when i copy and paste that symbol somewhere it is a new line confusing Link to comment https://forums.phpfreaks.com/topic/166809-solved-new-line-in-text-file/#findComment-879608 Share on other sites More sharing options...
Mark Baker Posted July 21, 2009 Share Posted July 21, 2009 You're looking at this file on a Windows box, aren't you. Windows you need "\r\n" Link to comment https://forums.phpfreaks.com/topic/166809-solved-new-line-in-text-file/#findComment-879611 Share on other sites More sharing options...
jamesxg1 Posted July 21, 2009 Author Share Posted July 21, 2009 You're looking at this file on a Windows box, aren't you. Windows you need "\r\n" Worked , Thank's for your time guy's . James. Link to comment https://forums.phpfreaks.com/topic/166809-solved-new-line-in-text-file/#findComment-879612 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.