Hi guys,
I want to pass multiple forms to different scripts. Lets say. Can u please help me..
I want to pass multiple forms to different scripts. Lets say. Can u please help me..
Code:
<form action="pass1.py" method="post" name="Submit"> <input name="gene" type="checkbox" value="gene" /> GENE 1 <form action="pass2.py" method="post" name="Submit"> <input name="gene" type="checkbox" value="gene" /> GENE 2 <form action="pass3.py" method="post" name="Submit"> <input name="gene" type="checkbox" value="gene" /> GENE 3 <input type = submit value = submit> </form>
Comment