| PHP File Uploader Class Reference |
|
PhpUploadFile.FileGuid Property
Gets the GUID of the file.
Example Code
- <?php
-
- $fileguid=@$_POST["myuploader"];
- if($fileguid)
- {
-
- $mvcfile=$uploader->GetUploadedFile($fileguid);
- if($mvcfile)
- {
-
- echo($mvcfile->FileGuid);
- }
- }
- ?>