|
|
OverviewA way to pass arguments to the script executing as SSI.
Flow
A sample code<!--#include virtual="topdisp.cgi?mode=event" -->
Description of the code<!--#include virtual="topdisp.cgi?mode=event" --> To execute a script with SSI, usualy <!--#exec cgi="script.cgi" --> or <!--#exec cmd="script.cgi" --> is used. However, in this method, it cannot pass arguments into the script. By using To obtain the contents directly, it can be done as follows.
$data=$ENV{"QUERY_STRING"};
|