http://qs321.pair.com?node_id=1102408

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

I have code that prints html header this way with CGI.pm:

-style => {-code=> "$page_style", 'src'=>[$_css_path,$_css_path2]},#.. +.. I just copied that line out...

this is just part of it that goes in this header:
print start_html();

My question is, if I have a page that I want to pull in a different CSS is there a way to put them all in a array instead of the way I did it, where the files are all printed into there so they are all pulled in:
@whatever = ("$_css_path","$_css_path2"); -style => {-code=> "$page_style", 'src'=>@whatever}, #....
Then if I have another path, say in this tag: $_css_path3, how would I add it? push?

Please let me know how to make it work.
Thank you. :)
Ukn