home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 September
/
Chip_2001-09_cd1.bin
/
zkuste
/
delphi
/
unity
/
d5
/
DBGCGI.ZIP
/
TESTCGI
/
Project1.dpr
< prev
next >
Wrap
Text File
|
2001-03-05
|
591b
|
27 lines
{
After all the required steps for a normal CGI are done,
compile, set a breakpoint, press F9, open the browser and try this URL:
http://localhost/path_to_CGI/project1.cgi?continent=South+America
Of course, you need to write the real path and please check for
steps 3 and 4 in the small documentation.
}
program Project1;
{$APPTYPE CONSOLE}
uses
WebBroker,
//CGIApp,
dbgCGIApp,
Unit1 in 'Unit1.pas' {WebModule1: TWebModule};
{$E cgi}
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TWebModule1, WebModule1);
Application.Run;
end.