Posted by Peter on 10/25/27 11:20
> To get further help you should present some code you are using. And I
> don't mean the code of the pear class. I mean just the code you use to use
> the pear class.
>
> Regards
> Stefan
Hi
I have taken out any unnecessary code.
class my_class extends DB
{
function check_user($user_name)
{
global $_SERVER;
$sql = 'select * from users where username =
\''.htmlspecialchars($user_name).'\' AND browser =
md5(\''.mysql_real_escape_string($_SERVER['HTTP_USER_AGENT']).'\') AND
session_id = md5(\''.htmlspecialchars(session_id()).'\')';
$confirm_user = parent::query($sql);
if ($confirm_user->numRows()==1)
{
$_SESSION['logged_in'] = true;
}
}
}
as you can see I have tried parent::query($sql); I have also tried
DB::query($sql); but that does not work either, in both cases it displays an
error saying the following:-
Fatal error: Call to undefined function: db() in
/home/petermcd/public_html/the.php on line 25
Navigation:
[Reply to this message]
|