Ok, this should be very simple.. I just don't quite have the php knowledge (or time to try to figure it out) to finish the task.
Anyway.. I have an external script that I only want a particular group or groups to access. So really, all I have to add to this script is this authenticate logic to test whether or not they should have access to the page.
So, I know this is needed:
$threadspath= "/home/mydomain/public_html/forums";<br /><br /> require ("$threadspath/main.inc.php");<br /><br /> $userob = new user;<br /> $user = $userob -> authenticate();<br />
So... with that, what would come next? I basically just need it to check to see if they are in group X. If they are... run/display the script as intended.
If they are not in group X, then they are re-directed to another page, or a simple message is displaying telling them why they can't access it.
It is probably just a simple query to U_Group or whatever, and then an if statement to check... but, it would take me 3 weeks to figure it out

So any help would be great
