I don't see why not, you just have to check to see which value was set. you'll need to change the value= so they are unique per form, then retrive them from globals if you're using php4+
$sent1 = $POST('value1');
$sent2 = $POST('value2');
if (isset($sent1) {
process the first form
} else
if (isset($sent2) {
process the second form
{
{ else
{
neither was set and you got here seripticiously
}
i didn't try it, but is should work,
r
$