Hi,
<?php
$anzahl = 4;
$newDate = mktime(0,0,0, 8, 1, 2007);
$newtime = time();
$diffDate = ($newDate-$actDate);
was ist $actDate?
$days = floor($diffDate / 24 / 60 / 60 / 7)%anzahl+1;
"anzahl" muss "$anzahl" heissen. Ob der Modulo-Operator in PHP der gleiche ist wie in Javascript weiss ich nicht.
echo $days;
?>
>
> Die Ausgabe von $days ist immer 1 ?
Bekommst du da keine Fehlermeldungen? Mit [error_reporting()](http://us2.php.net/error_reporting) kannst du das irgendwie einstellen.
mfG,
steckl