Regards. I want to send some of my values in the form by GET method and some by POST method. How can i do it ? Here is an example. I wan to make this kind of page, but i want a single submit button for both the forms. Is it possible to use GET method on some feilds and POST method on some ?
<html>
<form name="f2" action="a.php" method="POST">
Name: <input type="text" name ="uname"/><br>
Password: <input type="password" name ="pass"/><br>
<input type="submit" >
</form>
<br><br>
<form name="f1" action="a.php" method="GET">
Fav Movie: <input type="text" name="favmovie"><br>
Movie rating:<input type="text" name="rating"><br>
<input type="submit" value="My FAv movie">
</form>
</html>