Re: Store Form Variables to MYSQL Database

  •  11-15-2011, 6:18 AM

    Re: Store Form Variables to MYSQL Database

    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
View Complete Thread