Nightfire
12-05-2002, 08:39 PM
Might seem simple enough, but I'm having some problems with this. I'm adding everything from the database into a variable called $content, like this:
$content = '<b>'.$row[title].'</b><br>'.$row[content];
then echo'ing it on a page (<?=$content?>) where I want it. The problem is that I'm trying to get some php code in $row[content] to be parsed, but it is just simply printing it onto the page, as if it was text.
Any ideas how to do this?
$content = '<b>'.$row[title].'</b><br>'.$row[content];
then echo'ing it on a page (<?=$content?>) where I want it. The problem is that I'm trying to get some php code in $row[content] to be parsed, but it is just simply printing it onto the page, as if it was text.
Any ideas how to do this?