Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: multidimensional array's

by LanX (Saint)
on Dec 27, 2012 at 20:50 UTC ( [id://1010576]=note: print w/replies, xml ) Need Help??


in reply to multidimensional array's

Hi

I didn't really understand the context but for the following line

$results[$loopcount] [1] = (@$row[1]); THIS LINE IS NOT WORKING.

can't work, since you can't assign an @array-list to an array element¹, only scalars (simple or references)

in your case you have the option between

$results[$loopcount][1] = $row[1]

which copies references

or

$results[$loopcount][1] = [@$row[1]]

which creates a new array-reference with elements copied (one-level deep)

While ignoring the rest of your post I hope this helps! =)

Cheers Rolf

¹) well you won't get an error here, because Perl will take the size of the array in scalar context.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (6)
As of 2024-04-18 11:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found