filburt1
12-09-2002, 10:00 PM
Add the following to phpinclude to see all assigned variables:
echo "<pre>";
print_r(get_defined_vars());
echo "</pre>";
You'll see an incredibly huge flood of text, much of it useless (just repeating the templates and replacements), but nestled in there are variables that you can use in your templates. Useful for seeing what $bbuserinfo contains, among other things.
echo "<pre>";
print_r(get_defined_vars());
echo "</pre>";
You'll see an incredibly huge flood of text, much of it useless (just repeating the templates and replacements), but nestled in there are variables that you can use in your templates. Useful for seeing what $bbuserinfo contains, among other things.