Help for this page

Select Code to Download


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