Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^3: Passing array of references to Template

by philipbailey (Curate)
on Aug 23, 2011 at 20:06 UTC ( [id://921990]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Passing array of references to Template
in thread Passing array of references to Template

FOR and FOREACH are completely interchangeable. I prefer the former, but either is fine.

I would suggest that you convince us (or yourself, at least) that $results contains what you expect, e.g. using Data::Dumper.

Update: it occurs to me that @sendoff is never defined. Did you really run this using strict? You don't seem to need $sendoff or @sendoff at all: just write

$template->param('results' => $results);

Replies are listed 'Best First'.
Re^4: Passing array of references to Template
by packetstormer (Monk) on Aug 23, 2011 at 20:27 UTC
    Yeah - printing the \@sendoff via Dumper displays what I need. I actually have a typo in what I posted, the actual code is
    my $results = &return_values; my @sendoff = @$results;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://921990]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-19 19:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found