I have an output of
C:/Path/file/file.mp3
now I need to fetch the file from the path and upload using jquery
and store that file to 'audioData' variable...
$.ajax({
    type: "POST",
    url: 'URL',
    data: {
        image: imageData,
        audio: audioData
    }
    // etc
});
How can I get in php? as a FILE or POST ?
 
     
     
    