Acabo de realizar una form y lo enlace con un iframe igualando el target del form con el name del iframe.
Ahora el problema es que no funciona ya que necesito un action.php para el form el cual procese la información y la publique en el iframe en forma de cuadro, el problema es que no se realizar ese action.php ; Mi pregunta es:
¿Me podrían hacer ese action?.
Esta estas son mis lineas de programación: Muchas Gracias
Código HTML:
<body> <h1>Iframe</h1> <iframe src="Iframe.html" width="400" height="500" frame border="1" name="Iframe" scrolling="no" align"center" ></iframe> <h1 align="center">Formularios</h1> <form action=" "method="post" target="marco2"> Nombre: <input type="text" name="nombre" /></br /></br /> Clave: <input type="password" name="clave" /></br /></br /> Comentario:</br /><textarea cols="20" rows="5" name="comentario"></textarea></br /> <input type="checkbox" value="si" name="leer" checked="checked" />Leer</br /> <input type="checkbox" value="si" name="escribir" />Escribir<br /> Sexo: <input type="radio" name="sexo" value="h" checked="checked" >H </br /> <input type="radio" name="sexo" value="m" />M <br /> Pais: <select name="pais"> <option value="arg" selected="selected">ARG</option> <option value="bra">BRA</option> <option value="chi">CHI</option> </select></br /></br /> <input type="reset" value="Reestablecer" /> <input type="submit" valve="Enviar" /> </form> </body>