vipsa Posted January 3, 2013 Share Posted January 3, 2013 The special characters \n and \t do not have any affect on my script. Why would that be please? Quote Link to comment Share on other sites More sharing options...
Muddy_Funster Posted January 3, 2013 Share Posted January 3, 2013 what do you mean by "have no effect"? Quote Link to comment Share on other sites More sharing options...
cyberRobot Posted January 3, 2013 Share Posted January 3, 2013 It might also be helpful to show some code. One thing to look for is if the special character is enclosed in single quotes. For example, the following doesn't work: <?php print 'here\n'; ?> It needs to be changed to double quotes. <?php print "here\n"; ?> Quote Link to comment 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.