Server Side Includes
And here is an example of 'echo'ing local information:
<!--#echo var="DATE_LOCAL" -->
You can also 'execute' small commands on your machine:
<!--#exec cmd="./timeleft.pl" -->
And you can use this to do some minor programming, and also pop up a lot
of interesting variables:
<!--#echo var="REMOTE_ADDR" -->
<!--#echo var="REMOTE_HOST" -->
<!--#echo var="HTTP_USER_AGENT" -->
<!--#printenv -->
|