Hi,
I'm having some problems with the print function in perl when running through Apache.
The following works:
print qq[
test];
the following do not work:
print qq[test];
print "test";
print 'test';
But all of them work when running from the bash i.e. Perl someFile.pl
what the????? does any1 know why???
Thanks.
I'm having some problems with the print function in perl when running through Apache.
The following works:
print qq[
test];
the following do not work:
print qq[test];
print "test";
print 'test';
But all of them work when running from the bash i.e. Perl someFile.pl
what the????? does any1 know why???
Thanks.