Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Monks, is it possible to call system function in CGI. For example as shown below.
#!C:\perl\bin\perl.exe use CGI; $q = new CGI; print $q->header("text/html"); print $q->start_html(-title=>"details" -bgcolor =>"#FFEAA9"); system("test.exe"); print $q->end_html;
Is there any other way to do this?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Calling system function in cgi
by dorko (Prior) on Dec 28, 2005 at 13:29 UTC | |
by esskar (Deacon) on Dec 28, 2005 at 14:22 UTC | |
by vek (Prior) on Dec 28, 2005 at 16:53 UTC | |
|
Re: Calling system function in cgi
by swkronenfeld (Hermit) on Dec 28, 2005 at 16:52 UTC | |
|
Re: Calling system function in cgi
by jbrugger (Parson) on Dec 28, 2005 at 15:47 UTC |