Help for this page

Select Code to Download


  1. or download this
    my $counter = 'SELECT pagecounter FROM counters WHERE pagename = ?',
       undef, $pagename;
    
  2. or download this
       # A LIST assigned to a LIST
       my ($counter) = something_that_returns_a_LIST;
    
       # A LIST assigned to an ARRAY
       my  @counter  = something_that_returns_a_LIST;