I am using this shtml file for testing.
<!--#set var="lemon" value="HTTP_ACCEPT" -->
<!--#echo var="lemon" -->
<!--#include virtual="HTTP_ACCEPT" -->
<!--#include file="HTTP_ACCEPT" -->
<!--#fsize virtual="HTTP_ACCEPT" -->
<!--#flastmod virtual="HTTP_ACCEPT" -->
This echoes the value stored in the variable lemon, but the variable lemon does not have the value of HTTP_ACCEPT. How do I fix this?
I have tried it like this too.
<!--#set var="lemon" value="$HTTP_ACCEPT" -->
<!--#echo var="lemon" -->
<!--#include virtual="HTTP_ACCEPT" -->
<!--#include file="HTTP_ACCEPT" -->
<!--#fsize virtual="HTTP_ACCEPT" -->
<!--#flastmod virtual="HTTP_ACCEPT" -->
see wikipedia: Server Side Includes
<!--#echo var="HTTP_ACCEPT"-->