multiple file selection with descriptions

  •  02-08-2010, 1:17 PM

    multiple file selection with descriptions

    Hi Folks

    Thanks in advance
      is there a way to add several file controls or a better way:
    users need to select a file then enter a description for that file.

    e.g.

    Select file1: [____________] [BROWSE]   [text box to enter file description]
    Select file2: [____________] [BROWSE]  [text box to enter file description]
    Select file3: [____________] [BROWSE]  [text box to enter file description]

     
    [submit]
     
    tried this but the first one disables , second uploads file.
     
                <?php    
                    $uploader=new PhpUploader();    
                    $uploader->Name="myuploader";    
                    $uploader->InputboxCSSText="font-size: 12px;";    
                    $uploader->Render();    

     
                    $uploader2=new PhpUploader();    
                    $uploader2->Name="myuploader2";    
                    $uploader2->InputboxCSSText="font-size: 12px;";    
                    $uploader2->Render();    
                ?>    
      
     
View Complete Thread