Is it possible, in html, to have two different forms on one page (e.g. one regular "post" form, and another form which is enctype="multipart/form-data"), but only one submit button, which submits the contents of both forms simotaniously?
hmm... why cant it be:
<form action="??" method="post" enctype="multipart/form-data">
?
Well...there has to be on the same page textboxes AND a form to upload files (both sent to databases).
I dont see a problem with just 1 form, after all you only have 1 submit button.
Have you tried it yet?