Trying to add hashes to array then loop through and print them off. To add each hash to the array i am using:
push (@messages,
{
messageID => $1,
originator => $2,
recipient => $3,
body => $4,
receivedAt => $5,
type => $6
});
To print the contents i am using:
my...