Quote:
Originally Posted by sheep92032
is there any way to insert html into the template, something like this:
eval('$showhtml = "' .$showhtml . '";'); // with $showhtml containing html
I want to convert one of my scripts but if I can't do this it'll be a huge headache.
|
Try it and see.
You should be able to do this (don't forget to escape any quotes):
PHP Code:
eval('$showhtml = "<b>This is html</b>";');