I meant something along the lines of this website turning a submitted comment with a code block of:
<?php echo('This is what I want');$var1 = 'bob'; function testIt($asdf) { ...
into this:
<?php
echo('This is what I want');
$var1 = 'bob';
function testIt($asdf) {
...