Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8576303
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T19:53:44+00:00 2026-06-11T19:53:44+00:00

I am trying to make a Drag&Drop uploader. I’ve made the drag&drop part, but

  • 0

I am trying to make a Drag&Drop uploader. I’ve made the drag&drop part,
but now I have to make the PHP and I am stuck, without a clue what to do.
My problem is that, I cannot use move_uploaded_file(); because no

<input type="file">

is submitted.
Is there a way to work around this and what should I be using/doing?

I am not asking for a full code example but just a clue to what’s next for me.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T19:53:45+00:00Added an answer on June 11, 2026 at 7:53 pm

    Look into this implementation to get an idea:

    /**
     * Save the file to the specified path
     * @return boolean TRUE on success
     */
    function save($path) {    
        $input = fopen("php://input", "r");
        $temp = tmpfile();
        $realSize = stream_copy_to_stream($input, $temp);
        fclose($input);
    
        if ($realSize != $this->getSize()){            
            return false;
        }
    
        $target = fopen($path, "w");        
        fseek($temp, 0, SEEK_SET);
        stream_copy_to_stream($temp, $target);
        fclose($target);
    
        return true;
    }
    

    I’m using such implementation in one of my projects:

    $savePath = '/home/user/uploaded_files/picture.png';
    
    if(!isset($_FILES['qqfile']['tmp_name'])) {
        $input = fopen('php://input', 'r');
        $temp = tmpfile();
        stream_copy_to_stream($input, $temp);
        fclose($input);
        $target = fopen($savePath, 'w');
        fseek($temp, 0, SEEK_SET);
        stream_copy_to_stream($temp, $target);
        fclose($target);
    } else {
        move_uploaded_file($_FILES['qqfile']['tmp_name'], $savePath);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to make a basic drag and drop interface with divs, I have
I'm trying to make a drag-and-drop engine in JavaScript. Right now, I'm adding a
I have an application with a file and folder list control which supports Drag&Drop
I am trying to make a drag and drop function on UIScrollView and it's
I am trying to make a drag drop stage using Jquery, I am having
I am trying to make a drag and drop interface like the one you
I am trying to make an options menu popup after I drag and drop
I am trying to make Drag'n'drop work between 2 QListWidgets and actually do something
Im already 5 days trying to make jquery drag and drop with asp.net c#
I'm trying to make a program that allows to drag and drop files to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.