i have the following code:
$params = array(
"dsn" => "dsn",
"table" => "usr",
'dbFields'=>"*"
);
$a = new Auth("DB", $params);
$a->start();
however when i try to use:
$a->getAuthData('id');
to grab the rest of the fields from the table, it seems as if they weren't grabbed.
has anyone ever had a problem with that?
thank you