idaachi Posted December 20, 2007 Share Posted December 20, 2007 Now, here's a stupid question that any programmer should know. I'm writing a new file where each line should contain the contents of name, age and address. Unfortunately I'm getting spaces between the lines in the newly written line. What should I change??? Who knows some good reading material on this basic stuff? $strNewLine = $strNewLine.$arCurrentLine["firstname"]."\t"; $strNewLine = $strNewLine.$arCurrentLine["lastname"]. "\t"; $strNewLine = $strNewLine.$arCurrentLine["age"]. "\r\n"; fwrite($nFileHandle,$strNewLine); fclose($nFileHandle); Instead of something like Nancy Placebo 19 Daniel Lewis 23 Webber Martin 34 I'm getting something like Nancy Placebo 19 Daniel Lewis 23 Webber Martin 34 Quote Link to comment https://forums.phpfreaks.com/topic/82489-t-and-rn/ Share on other sites More sharing options...
rajivgonsalves Posted December 20, 2007 Share Posted December 20, 2007 this $strNewLine = $strNewLine.$arCurrentLine["age"]. "\r\n"; should be $strNewLine = $strNewLine.$arCurrentLine["age"]. "\n"; Quote Link to comment https://forums.phpfreaks.com/topic/82489-t-and-rn/#findComment-419319 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.