Quote:
Originally Posted by Aftermath
|
Yes, been using search all day.
And no, that's not what I'm looking for. Maybe I didn't explain it correctly.
I have a plugin under global start, the variable is being called from the profile page.
Code:
ob_start();
$memid = $userinfo[userid];
include("../jim_profile_gallery.php");
$jim_profile_gallery = ob_get_contents();
ob_end_clean();
$userinfo[userid] quals null.
I need $memid to equal the userid of the member's profile I am viewing.
Jim