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

I'm using the html5 canvas to drag and drop file uploads but I need to send additional info with the dropped files. specifically a recordID. I'm sending my file to php like this :

canvasData = canvas.toDataURL('image/jpeg');
var ajax = new XMLHttpRequest();
ajax.open("POST", './php/uploadImage.php', false);
ajax.setRequestHeader('Content-Type', 'application/upload');
ajax.send(canvasData);

How do I add an additional param of recordID = recordID along with the file?

share|improve this question

2 Answers

You can send it as a URL query parameter:

ajax.open('POST', './php/uploadImage.php?recordID' + recordID, false);
share|improve this answer

I fixed it with

ajax.open("POST", './php/uploadImage.php?recordID=' + recordID, false);
ajax.setRequestHeader('Content-Type', 'application/upload');
ajax.send('recordID='+recordID+'&'+canvasData);
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.