I'm having a problem parsing php inside a php variable. So, I would be doing something like this:
-----code start-----
<?
$variable = '<b>Hello <? echo "world"; ?></b><br>';
echo $variable;
?>
-----code end-----
this would only output 'hello' b/c the php would not get parsed. Is there a function that I'm missing?
-Doug