Hi mtimmons,
Please try the example below, it shows you how to hide the queue table.
- <?php require_once "phpuploader/include_phpuploader.php" ?>
- <?php session_start(); ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>
- example
- </title>
- </head>
- <body>
- <?php
- $uploader=new PhpUploader();
- $uploader->Name="myuploader";
- $uploader->MultipleFilesUpload=true;
- $uploader->Render();
- ?>
- </body>
- </html>
- <script>
-
- var uploader = document.getElementById("myuploader");
- uploader.handlequeueui=myqueueuihandler;
- function myqueueuihandler(list)
- {
- return false;
- }
- </script>
Regards,
Ken