I answered this question (links to my answer) and uploaded a couple of screenshots:
Connection between MSSQL and PHP 5.3.5 on IIS is not working
When I was composing the answer one of the uploaded screenshots wouldn't appear in the preview properly:
http://stackoverflow.com/posts/5432118/edit (screen capture)
Yi on chat had a look and it noted that removing the <pre> tags resolves this and that showdown.js (?) might not be handling raw HTML markup properly?
Update:
Arjan also points out in his answer that using sole <-- without a corresponding inside the <pre></pre> tags is also breaking something. See below.

<pre>(rather than indenting 4 spaces), one needs to HTML encode some characters manually to ensure a browser does not interpret it. This includes the<and>characters. So, to show the<--without any issues, one would better type<--instead. – Arjan Mar 25 '11 at 12:47