Ich bräuchte mal einen Skript
Jetzt musst Du nur noch sagen welche Sprache(n) Du serverseitig so zur Verfügung hast:
PHP
Perl
VbScript
Java
...
Ich versuchs mal mit PHP:
<?php
// Prints something like: Wednesday
echo date("l");
// Prints something like: Wednesday 15th of January 2003 05:51:38 AM
echo date("l dS of F Y h:i:s A");
// Prints: July 1, 2000 is on a Saturday
echo "July 1, 2000 is on a " . date("l", mktime(0, 0, 0, 7, 1, 2000));
?>
Quelle: http://de.php.net/date