Hi,
In php uploader , the steps of a upload is :
1 - Render the uploader
2 -uploader upload a file to server side handler , and return a GUID
3 - uploader prepair all GUIDs for files in client side , and fire the postback event
4 - on the postback event , developer can do these solutions :
A - submit the form , and handle the GUIDs on server side (POST MODE)
B - do Ajax callback , and handle the GUIDs on server side (AJAX MODE)
The programming model is very flex , and maybe little difficult at beginning.
Please check our example code.
Here is a basic guide for beginning :
You can write your code in
if($mvcfile)
{
......
}
Regards,
Terry