Can I use submit button out of the form and still process the form action on clicking submit button? Below is the code. I am new to programming. Please help me. Thanks\[code\] <body><input type="submit" name="submit" value="http://stackoverflow.com/questions/15600744/submit" /><form action="" method="get" name="myform"> <table width="200" border="1" cellspacing="10"> <tr> <td>Name</td> <td><label for="name"></label> <input type="text" name="name" id="name" /></td> </tr> <tr> <td>email</td> <td><label for="email"></label> <input type="text" name="email" id="email" /></td> </tr> <tr> <td>Group</td> <td><input type="checkbox" name="IT" id="IT" /> IT <input type="checkbox" name="ECE" id="ECE" /> <label for="ECE"></label> ECE <input type="checkbox" name="Mech" id="Mech" /> <label for="Mech"></label> Mech</td> </tr> <tr> <td>Hobbies</td> <td><label for="hobbies"></label> <input type="text" name="hobbies" id="hobbies" /></td> </tr> </table></form></body>\[/code\]