uploader
String
'uploadify.php'
Yes
The path to the server-side upload script (uploadify.php). This should be a path that is relative to the root is possible to avoid issues, but it will also accept a path that is relative to the current script. For more information about setting up a custom server-side upload script, see our article on Setting Up a Custom Server-Side Upload Script.
Demo
|
1 |
<input type="file" name="file_upload" id="file_upload" /> |
|
1 2 3 4 5 6 |
$(function() {
$("#file_upload").uploadify({
'swf' : '/uploadify/uploadify.swf',
'uploader' : '/uploadify/uploadify.php'
});
}); |

