Re: [PHP] re:[PHP] uploading help please again

2002-11-03 Thread Jason Wong
On Monday 04 November 2002 11:04, rija wrote: > You might receive 2 files throught upload, > then the first file name should be $_FILES['origem'] ; > and the second file name $_FILES['origem2'] ; > > To use the different variables you can use, peer John Holmes's answer, > there aren't no full answe

[PHP] re:[PHP] uploading help please again

2002-11-03 Thread rija
- Original Message ----- From: "'marcelo'" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 04, 2002 12:46 PM Subject: RE: [PHP] upload

RE: [PHP] uploading help please again

2002-11-03 Thread John W. Holmes
That's because $_FILES['origem'] is an array. It will have the following elements, where 'userfile' is 'origem' in your case: $_FILES['userfile']['name'] The original name of the file on the client machine. $_FILES['userfile']['type'] The mime type of the file, if the browser provided this info