Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
But it's not behaving quite right -- When I point my browser to the perl program, the program pops up in a command prompt window instead of appearing inside the browser. Does anyone know how to fix this?
I have just a vanilla test.pl program,
#!/bin/perl use CGI qw(:standard); print header('text/html'); print "<html>\n<head>\n</head>\n<body>\nhi\n</body>\n</html>\n"; #$x = <STDIN>;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl CGI on Windows 2003?
by blue_cowdawg (Monsignor) on Aug 08, 2003 at 20:12 UTC | |
by Anonymous Monk on Aug 08, 2003 at 20:20 UTC | |
by The Mad Hatter (Priest) on Aug 08, 2003 at 21:33 UTC |