Ok, so can you be more specific on how to get the 'guidlist'?
In the deployment page you give an example, but don't say what is the name of that file! I guess I need to create a file with that code and then I can customize it, right?
3. Retrieving uploaded file.
- <?php
-
- $fileguid=@$_POST["myuploader"];
- if($fileguid)
- {
-
- $mvcfile=$uploader->GetUploadedFile($fileguid);
- if($mvcfile)
- {
-
- echo($mvcfile->FileName);
-
- echo($mvcfile->FilePath);
-
- echo($mvcfile->FileSize);
-
-
- $mvcfile->CopyTo("/uploads");
-
- $mvcfile->MoveTo("/uploads");
-
- $mvcfile->Delete();
- }
- }
- ?>