Hi billedouble,
Please refer to example page "form-keepingstate.php", it shows you how to get the upload file info. Then you can save these info into your database.
foreach($files as $mvcfile)
{
echo("<tr>");
echo("<td>");echo("<img src='phpuploader/resources/circle.png' border='0' />");echo("</td>");
echo("<td>");echo($mvcfile->FileName);echo("</td>");
echo("<td>");echo($mvcfile->FileSize);echo("</td>");
echo("</tr>");
}
Regards,
Ken