i currently have an array of hashes

@logins

where I can access elements like:

print $logins[0]->{'login_name'};

i've set one of my vars

vars->$logins = @logins;

I'm trying to print it out in my template

<ul>
[% FOREACH person = logins %]
        <li> loginname is [% person %]

[% END %]
</ul>

but i get the array size (2) (for two logins) - what
should I change? The hash name for each element in the
array is "login_name".

Thank you.

-Edward

__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://lists.template-toolkit.org/mailman/listinfo/templates

Reply via email to