----- Original Message ----- From: "KeN ClarK" <[EMAIL PROTECTED]> > script is HERE: > > #/usr/local/bin/perl -w > use CGI qw(:cgi); > use strict; > > $myurl = "http://www.quantifier.org/phpquant/"; > > print "Location: $myurl\n\n"; > exit; > > ********* > I am fried right now. I have tried this with $url & use strict but > received this: > > Global symbol "$myurl" requires explicit package name at quantdirect.pl > line 5. > Global symbol "$myurl" requires explicit package name at quantdirect.pl > line 7.
In using strict you have to declare your variables as my $myurl like this, if not you'll get the above errors :- my $myurl = "http://www.quantifier.org/phpquant/"; _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]