Hi,
I'm trying to pass $_FILES['userfile'] data to another script. How can I do this??
I'm trying to do this under PHP 4.3.1;
script1.php; displays form and executes file2.php on POST(submit).
script2.php; displays summary of data entered by user and executes file3.php on POST.
script3.php; stores POST'd data and uploads file.
I have access to the $_FILES['userfile'] data in script2.php, but am stuck as to how to pass it to script3.php for upload.
All tips gratefully received, thanks,