Hi,
I have created an array from input from users, this array is
then stored. I want to create a file with the contents of the
array and sent it to the users.
I am able to sent on data to the user, but what syntax could I
use to create a file from an array:
e.g.
foreach $element ( @DATA )
{
#create a $file of these elements
}
mailx $file
I also what the $file created to be stored in the current dir.
any ideas?
Thanks!