post variables are done by submitting a form with METHOD=post....
the way you said it, yes your idea should work for now...
i thought you were only outputting 1 form, and using the addmatch to tell if were submitted or not...
add this for your else....
else
{
echo '<hr><br><pre>';
print_r($_POST);
echo '</pre>';
} // you also forgot to close your else...
?>
this will output an HR, then dump ALL the data from your POST variable to the browser so you can see exactly what your form is putting into the post var....