When displaying PHP syntax highlighting, the forum rmove back slashes form the code:

This:
Code:
$bs = "\\";
Diaplays as this in PHP:
PHP Code:
$bs "\\"
To display a backslash you need to escape them:
Code:
$bs = "\\\";
PHP Code:
$bs "\\\"; 
Is it possible to change this strange behaviour , as it makes trying to read PHP code posted by other members, rather difficult.

See this thread: http://www.vbforums.com/showthread.p...44#post1785477