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

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

I have to create a set of data using an array ftn for the variables content code, portal name, content text and display the information in a continous text form. Pls let me know how to concatenate the corresponing indexes. ------------------ @Code = (404,408); @Portal_Name = ("http://software.com","http://yahoo.com"); @Text = ("Not found","Request Timeout"); push(@Portal_Name,@Code); push(@Portal_Name,@Text); print @Portal_Name; -------------- I want to print 404 http://software.com Notfound like that for each index element