Re: [htmltmpl] HTML::Pager persist_var
Brought to you by:
samtregar
From: Sam T. <sa...@tr...> - 2004-06-09 04:27:33
|
On Tue, 8 Jun 2004, Greg Jetter wrote: > Could someone enlighten me on the proper way to pass an array ref to this > part of the new() call ? > > I've tried persist_vars => [@$array ] > > WHERE : > > @array = ("PostalCode", $searchZip); That should be just: @array = ("PostalCode"); HTML::Pager uses the value from $query->param() for the vars you ask to be persisted. -sam |