- or download this
open(COUNTTHIS, "< $counttext") or die "I can't open counttext: $!\n";
print(<COUNTTHIS>);
- or download this
$thenumber = <COUNTTHIS>; #I thought something like this, but no
- or download this
print (<COUNTTHIS>);
$thenumber = $_;
...
# or, alternatively, like this :
$thenumber = <COUNTTHIS>;
print $thenumber;