Ok, I tried using the Plugin system.
I created a plugin for global_start with the following code:
PHP Code:
ob_start();
include('path/to/this/file/myfile.php');
$includedphp = ob_get_contents();
ob_end_clean();
and then inserted $includedphp first in headerinclude and then in postbit but to no avail, my script keeps telling me I don't have access even though I am in the right usergroup. Thoughts?
--------------- Added [DATE]1243441934[/DATE] at [TIME]1243441934[/TIME] ---------------
Additionally, I will try to explain what it is I am trying to do.
I want to make a post on my forums. A user goes to that post and gets specific information based on his usergroup... however, someone in a different usergroup will simply see different information within that post.
Hope that helps.