Muss das Problem bis morgen finden!
$cur = odbc_exec( $cnx, "select MA_Pwd from MA where MA_Ken = $Kennnummer");
$oldpassword_database = (odbc_result($cur,1));
$oldpassword_hash = md5(htmlspecialchars($oldpassword));
$newpassword = htmlspecialchars($newpassword, ENT_QUOTES);
$newpassword_confirm = htmlspecialchars($newpassword_confirm, ENT_QUOTES);
echo"$oldpassword_database $oldpassword_hash $newpassword $newpassword_confirm";
$a = strcmp($oldpassword_hash,$oldpassword_database);
echo "$a";
if ($oldpassword_hash == $oldpassword_database && $newpassword == $newpassword_confirm)
{....
Das Problem ist, daß er bei richtiger Eingabe nicht in die If schleife kommt
Den strcmo und die zwei Ausgaben hab ich jetzt nur zu Testzwecken drinnen. Verstehs einfach nimma!!!
Danke für die Hilfe
$cur = odbc_exec( $cnx, "select MA_Pwd from MA where MA_Ken = $Kennnummer");
$oldpassword_database = (odbc_result($cur,1));
$oldpassword_hash = md5(htmlspecialchars($oldpassword));
$newpassword = htmlspecialchars($newpassword, ENT_QUOTES);
$newpassword_confirm = htmlspecialchars($newpassword_confirm, ENT_QUOTES);
echo"$oldpassword_database $oldpassword_hash $newpassword $newpassword_confirm";
$a = strcmp($oldpassword_hash,$oldpassword_database);
echo "$a";
if ($oldpassword_hash == $oldpassword_database && $newpassword == $newpassword_confirm)
{....
Das Problem ist, daß er bei richtiger Eingabe nicht in die If schleife kommt
Den strcmo und die zwei Ausgaben hab ich jetzt nur zu Testzwecken drinnen. Verstehs einfach nimma!!!
Danke für die Hilfe
Kommentar