I do have all the values... just dont know how to make them go through md5() ...
the one i'm trying to make is a sum.. or chain if you will of values already calculated in that form...
some of the values are static and some are changing values depending whats the amount, quantity etc... but thay all are in there already when i need to run em through md5...
lets say we have defined these already:
$ref = '5144';
$date = 'EXPRESS';
$cur = 'EUR';
$stamp = intval($order->info['total'] * 123);
and my module writes values like that correctly....
now i would need to also run all these as "chain" through md5 and get one hidden field like value="sdf897sdfg78dKG8" ... and i have no clue how i do it....
md5($ref,$date,$cur,$stamp) ....maybe or so?
and then ask the hidden field write something like:
tep_draw_hidden_field('NEWFIELD', md5); ...?
now this is where i get lost becouse my general knownledge of php or any coding is kinda small 🙂
or do i need to make function md5() ...?
hehe dumb and lost here 😃