I want to make a tutorial website, but making the PHP tutorial I ran into a little problem. I usually save my tutorials in MySQL in HTML. This works fine, the HTML is shown as text with the correct layout.
The PHP only works partially. I want to do the following:
<p>test</p>
<?php
highlight_string('echo "test";');
?>
On my screen i see, 'echo "test"' but without the highlights. Any suggestions on how to change this?