highlight words.

2001-11-15 Thread Houda Araj
I want to highlight words. I provide the code and the errors generated by the code. Can somebody help me to fix the problem. Thanks Source.txt Your AdWords text ads appear on search result pages for the keywords you buy, and can be targeted by language and country. So, to reach collectors of

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

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