hi drdx,
1. After uploaded, you can get the upload file info like the code below, it is the server side php code, so I think you can achieve your sql code in it too.
- <?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();
- }
- }
- ?>
2. What is the "attribute fields" you mean? Can you explain your question in detail?
Regards,
Ken