When displaying PHP syntax highlighting, the forum rmove back slashes form the code:
This:
Diaplays as this in PHP:Code:$bs = "\\";
To display a backslash you need to escape them:PHP Code:$bs = "\\";
Code:$bs = "\\\";
Is it possible to change this strange behaviour :ehh:, as it makes trying to read PHP code posted by other members, rather difficult.PHP Code:$bs = "\\\";
See this thread: http://www.vbforums.com/showthread.p...44#post1785477
