file upload +path
Posted: Wed Feb 28, 2007 2:26 pm
Hi,
I have a multiple file uplaod script. I am trying to have files uploaded out of the public_html folder. When I use:
it works fine. When I set the path as:
It uploads the file as Array. If I rename that to Array.zip the file is intact.
How should it be formated?
Thanks
I have a multiple file uplaod script. I am trying to have files uploaded out of the public_html folder. When I use:
Code: Select all
copy($files_uploaded['tmp_name'][$counter], uploads."/".$filename);Code: Select all
copy($files_uploaded['tmp_name'][$counter], "/hsphere/local/home/the1sty/uploads/".$filename);How should it be formated?
Thanks