By: desbest tynamite
Date: 2007-09-04
Time: 18:18
|
HTML is not parsed through tbs variables
$getme = "<b>mercury</b>";
echo $getme
This shows the word, mercury in bold.
$getme = "<b>mercury</b>";
[var.getme]
This shows the html code of the variable
How do I make the word, mercury appear in bold.
|