Hello all
I have a MD5 problem with hidden field / form thingy... i try to make it as clear as possible...
I am making a form for my bank which has order info and such. I have made it all work but there is a part of the hidden fields (inside form) that need to be MD5 crypted. Now i aint that good with php or any other coding :rolleyes: but i guess it could be done with md5()...
so what i need is to know how to output this "action form" (POST) hidden field as MD5.. so it shows in html source like: <input type="hidden" name="whatever" value="KJh0we77345kjke8"> before i transfer it to the bank.
This is not a password or any other secret info but just plain text as MD5... and i dont need to write it to any file or db ..but just as hidden field in html form....
Example in function:
$process_button_string = tep_draw_hidden_field('VERSION', 'xxxxxx');
return $process_button_string;
if i need to make that "xxxxxx" as MD5 ..how would i do that?
...i have no idea if i gave enough info or i made any sense but i'm trying
Many thanks in advance!