Thanks,
I have an html page that lets the user browse and select the file, then click 'Upload' button.
The page has no form that does a 'submit' when the button is clicked, rather another javascript function is called to process the information, and then if ok, call a PHP function to upload the file.
Code Snippet:
<input type="file" name="" class="form-file" id="AddFile" size="40" />
<input type='button' class='Button' value='Upload Files' name='AddDoc' onClick='addFiles();'>
So.. there is user input required for uploading any file... This functionality is embedded in another 'module' and do not want the screen/page refreshing when uploading the file.
Does this make sense enough to be doable using PHP?
Thanks...