in reply to Re^2: using pagecount variable in array?
in thread using pagecount variable in array?

Did you also change the top of your script to include use strict;? I think that was much of the point of liverpole's post.

    -Bryan

Replies are listed 'Best First'.
Re^4: using pagecount variable in array?
by bobafifi (Beadle) on Jul 23, 2006 at 17:47 UTC
    > Did you also change the top of your script to include use strict;?

    No, I already was using strict:

    #! /usr/bin/perl -w use strict; use POSIX; use DBI; use CGI qw(:standard); my ($dbh, $sth, $count);
    Thanks,

    -Bob