wsproperties
MIS
Using php admin (server side) I have the following code
insert into admin values ('','Smith','smith_gr ',password('tlc84')) ;
I have done this several times. I general get the name and an encrypted password resembling a hexidecimal numeric sequence. Now I get a long number like this *EAA2EB17BB18979A5D3824AC. The password will not work when I access it. In addition, if I want to encrypt using a particular ID would the code be something like this
insert into admin values ('','Smith','smith_gr ',password('tlc84')) where id = 146;
insert into admin values ('','Smith','smith_gr ',password('tlc84')) ;
I have done this several times. I general get the name and an encrypted password resembling a hexidecimal numeric sequence. Now I get a long number like this *EAA2EB17BB18979A5D3824AC. The password will not work when I access it. In addition, if I want to encrypt using a particular ID would the code be something like this
insert into admin values ('','Smith','smith_gr ',password('tlc84')) where id = 146;