- or download this
#!/usr/bin/perl
#************* File Header ******************************
- or download this
use CGI qw/:standard/;
my @dataWrite;
my @dataRead;
my $x;
- or download this
my (@dataWrite, @dataRead, $x);
- or download this
undef @dataWrite;
undef @dataRead;
- or download this
open (fileReadWrite,"../Rules1.txt");
my @dataRead = <fileReadWrite>;
- or download this
open $fileReadWrite, '<', '../Rules1.txt'
or die $!;
- or download this
foreach my $value1 (@dataRead) {
push @dataWrite , $value1;
}
- or download this
@dataWrite=@dataRead;
- or download this
print "Content-type: text/html\n";
print("\n");