Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

PHP File Upload

Guest
Mar 08, 2007 Mar 08, 2007
I have done a really simple php file upload. However, when it uploads it uploads where the upload.php file is at. Is there a way to upload it into a different file folder?

Right now it gets uploaded to "/media/randImages/" becuase in that folder there is the upload.php
When I upload I want the upload.php to direct the image to "/media/randImages/people/"

How is this done?

Thank you.
AdonaiEchad
-----------------------

TOPICS
Server side applications
486
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Mar 08, 2007 Mar 08, 2007
On Fri, 9 Mar 2007 02:31:54 +0000 (UTC), "AdonaiEchad"
<webforumsuser@macromedia.com> wrote:

> $file_dir = "";

Change the above line to:

$file_dir=$_SERVER['DOCUMENT_ROOT']."/media/randImages/people/";

Gary
Translate
LEGEND ,
Mar 08, 2007 Mar 08, 2007
On Fri, 9 Mar 2007 02:31:54 +0000 (UTC), "AdonaiEchad"
<webforumsuser@macromedia.com> wrote:

> $file_dir = "";

Change the above line to:

$file_dir=$_SERVER['DOCUMENT_ROOT']."/media/randImages/people/";

Gary
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Mar 09, 2007 Mar 09, 2007
Thank you, that was what I needed.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Mar 09, 2007 Mar 09, 2007
LATEST
On Fri, 9 Mar 2007 20:59:16 +0000 (UTC), "AdonaiEchad"
<webforumsuser@macromedia.com> wrote:

>Thank you, that was what I needed.

You're welcome.

Gary
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines