Quote:
Originally Posted by CodeRed
Thanks, the template is a php parses template. I tried your suggestions and it just displayed the text when I viewed the page and not the chatbox
It just displayed:
echo ;
I also tried just "$cybchatbox" in the template and in the theme itself and no go...
Thanks again for the suggestions though, I do appreciate it.
|
If it is displaying "echo ;" in a php parsed template, it means the section that you added this line is out of PHP scope (= you added it in a HTML part which began after ?>)
Try to add the line in a PHP part or if you want to keep it where it is try to include it with PHP syntax, ie:
<? echo $cybchatbox; ?>