Sí, se puede, pero no deben estar anidados:
Correcto
Código html:
Ver original<form method="GET" action="index.php"> <!-- Campos del formulario -->
<!-- ... -->
<form method="POST" action="pagina.php"> <!-- Campos del formulario -->
Incorrecto:
Código html:
Ver original<form method="GET" action="index.php"> <!-- Campos del formulario -->
<form method="POST" action="pagina.php"> <!-- Campos del formulario -->