Quote:
Originally Posted by Lynne
I asked to see what was in your template but you haven't posted it.
Here's an example of what I mean by don't use echo. You have:
PHP Code:
echo "There are currently $numRows users";
You should do it like this:
PHP Code:
$myvar = "There are currently $numRows users";
And then put $myvar in your template.
|
sorry for not replaying soon
Thanks for help