View Single Post
  #9  
Old 05-15-2006, 07:29 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by Raeiphon
Curious, is there any difference between \n and NL, besides personal preference?
\n is used inside strings, where NL is a string concationation operator that should be used between values.
PHP Code:
this.var = "Foo\nBar";
this.var = "Foo" NL "Bar"
__________________
Skyld
Reply With Quote