Jeffrey Reichert wrote:
> I have the unfortunate position of fixing and debugging scripts written by
> a previous employee.
> The problem was that the wrong METHOD was being used like the 4 of you told
> me. We have come across another problem though. There is a HEAVY use of
> Server Side Includes. The exact syntax is with <!--#include
> virtual="...."--> which calls a C script and displays information. Though
> the virtual tag executes with the GET METHOD. Is there any way to force it
> to POST?
In a word, no.
Is this a static page which is passing fixed data to the script, or is
it passing form input, with e.g.
<!--#include virtual="/cgi-bin/somescript?$QUERY_STRING"-->
If it's the latter, you can't do much about it, as you can't POST to
an HTML file. You would need to replace the HTML file with a script.
--
Glynn Clements <[EMAIL PROTECTED]>
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]