Hey
I am having trouble getting the exec() command used within a perl script to be executed via a web browser.
The above is a snippet. When run in Unix, if the statement is true, the search script is executed. When I try through the web browser, I get an internal server error.
?????????
If the condition is true, I want the current script to halt execution and execute the new script.
Any help? I am new to the CGI thing.
Thanx
Tecknick
I am having trouble getting the exec() command used within a perl script to be executed via a web browser.
Code:
if statement is true
{
exec("search.cgi");
}
else
{
&Login;
}
The above is a snippet. When run in Unix, if the statement is true, the search script is executed. When I try through the web browser, I get an internal server error.
?????????
If the condition is true, I want the current script to halt execution and execute the new script.
Any help? I am new to the CGI thing.
Thanx
Tecknick