Please suggest me how can upload audio file to the server by using phonegap.?
I want to make a file browse option by which user provide the location
You can POST a file to your server from PhoneGap, here's the api with a pretty solid example:
http://docs.phonegap.com/phonegap_file_file.md.html#FileTransfer
Then you can use PHP (or anything else) to pick up that POST and do whatever you want, save data as sql, write files, etc.