Sorry to bring up an old artical now, but I have come across a problem.
I have just gotten to the login part of the tutorial and while testing it I hit this error:
Fatal error: Call to undefined function: getnumrows() in /home/windfall/public_html/cms_test/includes/Sentry.php on line 65
The code in the Sentry.php (for quick reference) is:
if ($loginConnector->getNumRows($getUser) > 0){
// Login OK, store session details
// Log in
$_SESSION["user"] = $user;
$_SESSION["pass"] = $this->userdata['pass'];
$_SESSION["thegroup"] = $this->userdata['thegroup'];
if ($goodRedirect) {
header("Location: ".$goodRedirect."?".strip_tags(session_id())) ;
}
return true;
Does anyone have an idea what has gone wrong? Other than the obvious in the error message

haha.
Cheers for any help,
Meddigo
EDIT: Seem to have fixed it by changing all to the newer $_GET and $_POSTs. Cheers all the same.