Could not include SQL library
\n"; exit(); } if ($action == 'checkpass'){ $link = @da_sql_pconnect($config); if ($link){ $res = @da_sql_query($link,$config, "SELECT attribute,value FROM $config[sql_check_table] WHERE username = '$login' AND attribute = '$config[sql_password_attribute]';"); if ($res){ $row = @da_sql_fetch_array($res,$config); if (is_file("../lib/crypt/$config[general_encryption_method].php3")){ include("../lib/crypt/$config[general_encryption_method].php3"); $enc_passwd = $row[value]; $passwd = da_encrypt($passwd,$enc_passwd); if ($passwd == $enc_passwd) $msg = 'YES It is that'; else $msg = 'NO It is wrong'; } else echo "Could not open encryption library file
\n"; } } echo "$msg\n"; } ?>