I\'m trying to use the blueimp Jquery File Upload plugin for the project I\'m currently working on. It suits my needs perfectly, with one problem: I need to be able to chang
In your form, add a field like this:
And in your PHP where the file is uploading, just extract the path with:
$path = $_POST['path'];
Just put the path where it is specified in the PHP script.