#include #include #include #include #include "CGI.H" #include #include #include using namespace std; int main(){ // Uncomment this line to enable debugging in Visual Studio (without webserver) //setCGIDebug("name=John+Smith&pet=Alpaca"); // Print basic header info xhtmlHeaders("My IT350 web page"); // Your code goes here cout << "

My First CGI page

" << endl; // Print HTML footer xhtmlFooters(); return 0; }