Hallo, ich habe folgende PHP-funktion:
function gentimecode($code,$now){
$day=date("d",$now); //2digits (with leading 0)
$month=date("m",$now); //numerical, 2digits (leading0)
$year=date("Y",$now); //num, 4digits
$minute=date("i",$now); //num, 2digits (l 0)
$hour=date("H",$now); //num, 24h, 2dig (l 0)
$second=date("s",$now); //num, 2dig (l 0)
$secretpart="";
if($minute % 2 == 0){
$secretpart=$year.$month.$day.$hour.$code;
}else{
$secretpart=$year.$month.$hour.strrev($code).$day;
}
$coded=md5($secretpart);
if($minute % 6 == 0){
$coded=strrev($coded);
}
return strtoupper($second.$coded);
}
und ich möchte sie nach Javascript portieren, weiß aber nicht, wie ich das tun soll (ich kann nicht so gut javascript). kann mir jemand helfen?
(die PHP-seite per Ajax zu fragen ist leider nicht möglich, da der parameter $code nicht durchs netz übertragen werden darf)
danke im Vorraus
-- Michael "nonchip" Zimmer