home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Internet / Omnihttp / OH20A8.EXE / data1.cab / CGI / Cgi-Win / WINCGI.BAT
Encoding:
DOS Batch File  |  1998-04-08  |  428 b   |  15 lines

  1. @echo off
  2. echo HTTP/1.0 200 OK>> %3
  3. echo Content-type: text/html>> %3
  4. echo.>> %3
  5. echo "<PRE>" >> %3
  6. echo This is a WinCGI script implemented as a .BAT file.>> %3
  7. echo Typically WinCGI scripts are written as Windows applications,>> %3
  8. echo but this at least shows the basic idea of WinCGI.>> %3
  9. echo.>> %3
  10. echo This is the WinCGI file:>> %3
  11. type %1 >> %3
  12. echo.>> %3
  13. echo This is the POSTed data:>> %3
  14. type %2 >> %3
  15.