Quote:
Originally Posted by kh99
I'm not sure what you're asking. You only need to register variables for use in a template, not a plugin. So when you say "the variables are already registered within a admincp file", what does that mean exactly? Maybe you're Using "registered" in some way other than what I think it means?
|
say for example in my admincp file whatever.php
i have the following variables registered :
PHP Code:
$whattoecho = "";
if ($httpbl != 0) {
$whattoecho .= "httpBL: " . $httpbl . " | ";
}
i have a template hook i want this information to appear in
PHP Code:
$template_hook[forumhome_wgo_pos2] .= '';
i have already done the following to start it off
now i need the data to appear below that so i need the data from $whattoecho
to appear below that