Sorry to be stupid here but how do I get the recieving script to put the stuff into an array to use? I am sending a web page to the second script to process.
Ive tried:
$uploader = $query->upload("infile");
while (<$uploader>){
push (@import_files, $uploader);
}
And
while (<>){
push (@import_files, shift;);
}
and six or seven varants, please help.
Thanks
Rishard