can I have 2 forms in one php page??
for example
<table ....>
<php?
if(a==b){ ?>
<form method="post" name="form1" action="proccess1.php">
...
</form>
<php?
else{ ?>
<form method="post" name="form2" action="proccess2.php">
...
</form>
<php }?>
</table>