The global type of upload method to use.
Example Code- <?php require_once "phpuploader/include_phpuploader.php" ?>
- <html>
- <body>
- <form id="form1" method="POST">
- <?php
- $uploader=new PhpUploader();
- $uploader->Name="myuploader";
- $uploader->UploadType="Iframe";
- $uploader->Render();
- ?>
- </form>
- </body>
- </html>
Members
Member Name | Description |
---|---|
Auto | Determines browser capabilities and chooses the most appropriate method to upload. |
Flash | Uses an enhanced file dialog facilitated by a Flash object. |
Silverlight | Uses an enhanced file dialog facilitated by a Silverlight object. |
IFrame | Uses a standard IFrame technique to provide upload functionality without requiring the Flash plugin. |