Does anyone have any idea why when I echo HTML it doesn't parse the HTML but outputs the code? I even added two <h2> tags manually and it works, so it's just from pulling it out of the database.
<?php
//The <h2>s work fine but the array variable being outputted doesn't parse the HTML
echo "<h2>".$profile['biography']."</h2>";
?>