Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to implement file upload functionality on my site.

I have created the actual PHP script for uploading and this is what I've added to my HTML:

<form enctype="multipart/form-data" action="PHPScripts/upload.php" method="POST">
    <input type="file" id="browseButton" name="image" onchange="this.form.submit();" />
</form>

This triggers the upload.php as expected, however, this is not what I want to achieve exactly. I want to implement AJAX instead. So, when the user chooses the file, I want to trigger the JavaScript function and I want that function to call the upload.php subsequently.

But there's a problem: How am I supposed to pass the POST parameters (i.e. $_POST["upload"] and $_FILES["image"]) to PHP function through the JavaScript? I know it's supposed to be simple, but I'm stuck. Thanks for clarifying.

Update

Changelog explained that this is not possible in the way I imagined. My ultimate goal is to achieve the following:

  1. User browses for an image to upload.
  2. PHP uploads the image to the designated location on the server machine.
  3. (This is critical) The uploaded file is presented in a predefined tag after it has been successfully uploaded. Could you give some recommendations on how to achieve the third step? Thanks a bunch.
share|improve this question

2 Answers

up vote 1 down vote accepted

You won't be able to do the file upload via AJAX.

Basically what an AJAX interception does is it serializes the values on your form (you can try $('#form_id').serialize() on your console to see what it does).

Because the file is read from the disk, you don't have that data available at submit time and can't do it via AJAX like you can with regular fields.

share|improve this answer
OK, got it. My ultimate goal is to achieve the following: 1. User browses for an image to upload. 2. PHP uploads the image to the designated location on the server machine. 3. (This is critical) The uploaded file is presented in a predefined <img> tag after it has been successfully uploaded. Could you give some recommendations on how to achieve the third step? Thanks a bunch. – Boris Feb 14 '11 at 13:38

Ah, the classic AJAX file upload. It's like Schrodinger's web form.

@changelog is right, you can't do a file upload via AJAX...using JavaScript.

You can do a file upload via AJAX using flash though. I've seen a number of simple file-uploader scripts, and they're not overly difficult to make if you know how to program actionscript.

The term "AJAX" is being used liberally here: AJAX in JavaScript is mostly "Asynchronous JavaScript and JSON" these days. If you consider "Asynchronous ECMA Script and XML" to be "AJAX", then flash should work for you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.