Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: structuring data: aka walk first, grok later

by oko1 (Deacon)
on May 30, 2008 at 20:49 UTC ( [id://689337]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    %empl = (
               100000 =>  "data for employee 100000 will go here",
               100001 =>  "data for employee 100001 will go here",
               ...
    );
    
  2. or download this
    %empl = (
               '100000' => {   first_name => 'Joe',
                               last_name  => 'Smith',
                               ...
    
  3. or download this
    %empl = (
               '100000' => {   first_name => 'Joe',
    ...
                                                  'Anytown, USA 999999'
                               ],
                               ...
    
  4. or download this
    %empl = (
               '100000' => {   first_name => 'Joe',
    ...
                                                  fax    => '111-111-1113'
                               }
                               ...
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (6)
As of 2024-04-23 15:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found