in reply to Subs and Arrays - A blog script problem

Putting chromatic's advice into code:
sub getblogs { my ($start, $number_to_display, $blogs) = @_;
Of course you will have to access elements from @$blogs with $blogs->[1] or such.

Makeshifts last the longest.