Re: highlight words.

2001-11-20 Thread Jenda Krynicky
From: "Houda Araj" <[EMAIL PROTECTED]> > The script > #!/usr/bin/perl > use strict; > use diagnostics; > use CGI qw/:standard/; > use CGI::Carp 'fatalsToBrowser'; > > ... > Can't use an undefined value as a symbol reference at highlight2.pl > line 10. Try to add use Fil

Re: highlight words.

2001-11-15 Thread Jeff 'japhy' Pinyan
On Nov 15, Houda Araj said: >open my $fh, $phrase_file or die "$phrase_file: $!"; You're using an older version of Perl that can't handle this. Do open PHRASES, $phrase_file or die "$phrase_file: $!"; instead. And then read from . Do something similar here too: >open my $fh, $sou