I\'m implementing a registration/session handling code package based on articles from this site. I\'m getting a parse error when calling the class function \'register\' of class $authlib, where $authlib has been defined in \"backend.php\":
require(\"backend.php\");
$register = $authlib->register($username, $password, $password2, $name, $email, $age, $sex, $school);
All of the arguments to \'register\' have been passed from a form via the POST method.
help!