home *** CD-ROM | disk | FTP | other *** search
/ Packard Bell - Internet on a CD / internet on a cd.cdr / Internet / sites / HTML_1 / hello.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-07-16  |  155 b   |  8 lines

  1. #include <iostream.h>
  2. #include "./cgi.h"
  3.  
  4. cgi_main(cgi_info *ci) 
  5.       { print_mimeheader("text/html");
  6.     cout << "<html>Hello World!</html>";
  7.     return 1;}
  8.