Quote:
Except that you can't use SSI on dynamically generated pages used in PHP. At least not easily. Since you already have dynamic programmatically generated pages why bother introducing another layer of unneeded complexity?
|
wluke, i guess you are right, i didn't mention that i'm using php with this.
PHP Code:
SELECT count( * ) AS number
FROM session
WHERE userid = $bbuserinfo[userid]
and lastvisit > $browsertimeout
if( $result[ number ] > 1 ) {
update user set usergroupid = some_id_for_dup_user_acct
where userid = $bbuserinfo[ userid ]
}
MattR
(1) where shall i insert this code? in member.php (start login) and include the member.php in everypage ? or insert it in every page?
(2) how can you look at the blocked account or report it automatically?
Thanks guys