hi list,
I would like to ask about this error message.
when I ran the script under DOS command, it ran well, but when I ran it using browser, I got this error message. Can anyone help me to explain what the error means?



'C:\webmis\cgi-bin\helloWorld_di_write_ke_file.pl' script produced no output


perl script:

#!/usr/local/bin/perl

use CGI;

$query = new CGI;

$datafile = "../test.txt";

open (DATAFILE,">$datafile") || die "Can't open $datafile: $!\n";

print DATAFILE "Hello World";

close DATAFILE;

print $query->header;

print "saved\n"

_______________________________________________
ActivePerl mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to