Hi,
ich habe ein cgi welches die ServerTime auslist
völliger overkill. Das kann SSI alleine auch:
Today's date
<!--#echo var="DATE_LOCAL" -->
The echo element just spits out the value of a variable. There are a number of standard variables, which include the whole set of environment variables that are available to CGI programs. Also, you can define your own variables with the set element.
If you don't like the format in which the date gets printed, you can use the config element, with a timefmt attribute, to modify that formatting.
<!--#config timefmt="%A %B %d, %Y" -->
Today is <!--#echo var="DATE_LOCAL" -->
(http://httpd.apache.org/docs/howto/ssi.html)
Viele Grüße
Michael