Hi
I'm facing a problem with having two forms in the same page.The problem is that the action is taken from only the first form.
For example :
<html>
<body>
<form action='test.php' method='POST'>
<input type='submit' />
</form>
<form action='testme.php' method='POST'>
<input type='submit' />
</form>
</body>
</html>
when I hit on submit (both buttons will send me to the page : test.php )!
so how can I make each form send me to it's page ?
I hope you were able to understand me.