Best groupmember,
I am working on a login form that uses md5 as cryptation. I have got
everything to work exept the submit() function. I have verified that
all rows work except the last on:
function goForm(){
val = this.document.f orms.formul.pas sword.value;
md5 = hex_md5(val);
this.document.f orms.formul.pas sword.value = md5;
this.document.f orms.formul.act ion = "login.php" ;
this.document.f orms.formul.sub mit(); //Only this row is not working
}
-- Best Of Times
Peter Lauri
I am working on a login form that uses md5 as cryptation. I have got
everything to work exept the submit() function. I have verified that
all rows work except the last on:
function goForm(){
val = this.document.f orms.formul.pas sword.value;
md5 = hex_md5(val);
this.document.f orms.formul.pas sword.value = md5;
this.document.f orms.formul.act ion = "login.php" ;
this.document.f orms.formul.sub mit(); //Only this row is not working
}
-- Best Of Times
Peter Lauri
Comment