#!/bin/ch /* Copyright (c) 2001 by SoftIntegration, Inc. All Rights Reserved */ #include #include int main() { class CResponse Response; class CRequest Request; chchar *value, *name; Response.begin(); Response.title(L"The Result of Test of Request.getServerVariable"); printf("

The Result of Test of Request.getServerVariable


\n"); name = Request.getForm(L"serverVariable"); printf("The name of Server Variable is : "); if (name != NULL) { fputws(name, stdout); printf("
\n"); printf("The value of Server Variable is : "); value = Request.getServerVariable(name); if (value !=NULL) { fputws(value, stdout); printf("
\n"); } else printf("NULL
\n"); } else printf("NULL

\n"); Response.end(); }