- or download this
select user_id from activate_user
where user_id = :$user_id
and activation_hash = :$activation_hash
and expires > now()
- or download this
INSERT into pending_activations
user_id, hash, expiry
- or download this
$hash = &generate_hash( $USER, $passwd );
# ... confirm via hash
...
... confirm via passwd
}