PHP scripts register.php:
$compareUser = new User();
$user = new User;
verify.php (executes with a link from register.php, passes two variables to User.php)
User.php
setActive($token, $uid){
$this->username = /????
}
*assuming that User has a username property, which instance of the User class will $this take? $compareUser or $user?