Thanks for helpful suggestion. However, I don't seem to be able to get a very simple form working, the snippet follows. The form displays but will still only pick up 1 file.
Any idea where I'm going wrong?
<html>
<head>
</head>
<body>
<?php
// .... insert code to handle upload here...
// Form snippet:
echo "
<form enctype='multipart/form-data' action='$_SERVER['PHP_SELF']
method='POST'>
Use Browse to select file to upload:<br>
<input name= 'userfile[]' type='file' >
<br><br>
<input type='submit' value='Upload this File'>
</form>
<hr>"
?>
</body>
</html>
Thank you again. Ray